Yun Lv

Results 1 comments of Yun Lv

在module模式下引入相对路径是不允许的。在main_test.go文件中使用了import "./tables",修改成 import “{{module_name}}/tables”即可。 或者偷懒直接删除main_test.go不做测试也是OK了的。 推荐修改成 import “{{module_name}}/tables”。