我想在父模块中嵌入一个子模块目录,但golang提醒我pattern tpl/api_new/*: cannot embed file tpl/api_new/README.md: in different module我知道我可以删除go.mod和go.sum,然后在生成新项目时运行“go mod init && go get -u”。底部是文件树和嵌入变量,我还可以做些什么来嵌入go.mod和go.sum?谢谢~//go:embed tpl/api_new/*var apiNew embed.FS├─api_new│ │ .editorconfig│ │ .gitignore│ │ generate.go│ │ go.mod│ │ go.sum│ │ makefile│ │ README.md│ ││ ├─cmd│ │ └─app│ │ main.go│ ││ ├─config│ │ config-dev.toml│ │ config-live.toml│ │ config-local.toml│ │ config-prod.toml│ │ config-stress.toml│ │ config-trunk.toml│ ││ └─internal│ └─app│ ├─http│ │ │ server.go│ │ ││ │ └─example│ │ hello.go│ ││ ├─lib│ │ ├─err│ │ │ codecommon.go│ │ │ err.go│ │ ││ │ ├─pms│ │ │ init.go│ │ ││ │ └─util│ │ md5.go│ │ url.go│ ││ ├─model│ │ │ init.go│ │ ││ │ ├─grpc│ │ │ ├─roomaggregation│ │ │ │ aggregation.proto│ │ │ │ base.go│ │ │ ││ │ │ ├─roombase│ │ │ │ base.proto│ │ │ │ roombase.go│ │ │ ││ │ │ └─roomlist│ │ │ base.proto│ │ │ icon.go│ │ ││ │ ├─hrpc│ │ │ │ init.go│ │ │ ││ │ │ └─efs│ │ │ efs.go│ │ │ init.go│ │ │ option.go│ │ ││ │ └─redis│ │ ├─attachInfo│ │ │ index.go│ │ ││ │ ├─outing│ │ │ index.go│ │ ││ │ ├─roomcity│ │ │ roomcity.go│ │ ││ │ └─roomjump
- 2 回答
- 0 关注
- 148 浏览
添加回答
举报
0/150
提交
取消