私はmain.go
とmypkg/...go
です。 go build -o main main.go
またはgo install <pkg that has main.go>
を使用しています。これには必要なフラグがいくつかあります。しかし、私はまた、テストフラグを参照してください。なぜこうなった?私は何が欠けていますか?go buildを使用していますが、テストフラグも表示されます
Usage of ./main:
-docker string
Docker API Path, defaults to local (default "unix:///var/run/docker.sock")
-httptest.serve string
if non-empty, httptest.NewServer serves on this address and blocks
-port int
The default port to listen (default 8000)
-test.bench string
regular expression per path component to select benchmarks to run
-test.benchmem
print memory allocations for benchmarks
-test.benchtime duration
approximate run time for each benchmark (default 1s)
-test.blockprofile string
write a goroutine blocking profile to the named file after execution
-test.blockprofilerate int
if >= 0, calls runtime.SetBlockProfileRate() (default 1)
dockerPathとportは私のフラグですが、他のものは私のフラグではありません。
非常に感謝しています! – Mustafa