如何在Go中导入本地包?

时间:2016-07-20 17:31:33

标签: go

如何导入包?

myproject的

main.go

存储库

DBHelper.go

配置

Configuration.go

我需要从Configuration.go调用DBHelper.go中的函数,我该怎么办?

I need to call Select function from Configuration.go 谢谢!此致!

I Call Select but not working(undefined: DBHelper.Select in DBHelper)

1 个答案:

答案 0 :(得分:2)

包裹进口与您的GOPATH

相关

例如,如果DBHelper.go使用包" helpers" ,您的导入将如下所示:

<name of project folder>/Repository/helpers

这是一个非常相似的问题: How to use custom packages in Go

- 编辑

几乎忘了,要执行实际的函数调用,必须使用包名/别名。

helpers.MyFunc()