mirror of
https://github.com/golang/go
synced 2024-11-05 18:36:08 +00:00
misc: add go.mod file
Updates #30228 Updates #30241 Change-Id: I7ee839f4d2840873f7e37b3aff93fe534c6b52e6 Reviewed-on: https://go-review.googlesource.com/c/163207 Run-TryBot: Bryan C. Mills <bcmills@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
This commit is contained in:
parent
fa8a3f3080
commit
5f8ca7ee24
1 changed files with 11 additions and 0 deletions
11
misc/go.mod
Normal file
11
misc/go.mod
Normal file
|
@ -0,0 +1,11 @@
|
|||
// Module misc contains tests and binaries that pertain to specific build modes
|
||||
// (cgo) and platforms (Android and iOS).
|
||||
//
|
||||
// The 'run' scripts in ../src execute these tests and binaries, which need to
|
||||
// be in a module in order to build and run successfully in module mode.
|
||||
// (Otherwise, they lack well-defined import paths, and module mode — unlike
|
||||
// GOPATH mode — does not synthesize import paths from the absolute working
|
||||
// directory.)
|
||||
module misc
|
||||
|
||||
go 1.12
|
Loading…
Reference in a new issue