我在 golang 中创建了一个名为 go-orm 的包,其结构如下。
go-orm
--| mine.go
--| src
-----| src.go
-----| db
--------| DBConnection.go
当我在 go-orm 目录中运行命令“go install”时,它只创建了 go-orm.a 而不是 src.a 和 db.a(子目录或包)。当我用 mgo 包检查“go install”时,它为它的子目录“bson”创建了 .a 文件。
我的包需要相同的功能。我的包需要做哪些更改才能使这成为可能。
编辑 1
我的包在 GOPATH/src/ 目录中。我所有的子包(src 和 db)都存在。
qq_遁去的一_1
相关分类