Skip to content

Commit

Permalink
go.mod: add module file (#94)
Browse files Browse the repository at this point in the history
Go 1.11 is now released with preliminary support for Go modules.
If a repository is checked outside of the GOPATH, then the Go toolchain will
use the module support by default. However, it requires a go.mod file so that
the toolchain can derive the import paths of all packages living under the
tree containing the go.mod file.
  • Loading branch information
dsnet committed Sep 11, 2018
1 parent 2006917 commit 875f8df
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module github.com/google/go-cmp

0 comments on commit 875f8df

Please sign in to comment.