erictgrubaugh
05/21/2018, 5:31 PMfunction afterSubmit() {
myModule.doSomething();
}
where myModule imports the format module and has:
function doSomething() {
fmt.format(...); // this works fine
doSomethingElse();
}
function doSomethingElse() {
fmt.format(...); // this doesn't work
}