我想构建一个API以返回包内的所有全局变量。我使用// this should get called by whoever loads us and they should
// pass us the app object.
module.exports = function(app) {
app.use('/', router);
}
来导入包。它在我的本地计算机上运行良好,但是当我部署二进制文件时,它不起作用。它说go/importer
。仅供参考,我只部署了二进制文件而没有源代码。
这是示例代码
can't find import
有什么办法可以在二进制文件中导入包?
预先感谢