go.modの補足 パッケージ
前回の続きです。
[go.mod]
module example.com
go 1.15
require github.com/labstack/echo/v4 v4.1.17
上記のgo.modの一番上の
module example.com
の部分ですが、ここがimportして自分のパッケージを使う時の名前になります!
以下のような構成のプロジェクトの場合↓
test
|--samplea--aaaaa.go
|--sampleb--bbbbb.go
|--main.go
|--go.mod
|--go.sum
[main.go]
package main
import(
"example.com/samplea"
"example.com/sampleb"
)
このようにして使います。
ディレクトリの名前とモジュールの名前を同じにしたければ
[go.mod]
module test
にします。
Author And Source
この問題について(go.modの補足 パッケージ), 我々は、より多くの情報をここで見つけました https://qiita.com/flymywife/items/a871f96726805e04e212著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .