From 775f8194d0f9e65c46913c7be783d3d95a29333c Mon Sep 17 00:00:00 2001 From: Michael Matloob Date: Fri, 15 Feb 2019 17:40:24 -0500 Subject: [PATCH] all: add a go.mod file This change adds a go.mod file to this repo, following the requirements stated in bcmills's comment here: https://golang.org/issue/28136#issuecomment-462971974. It's important to note that we will not be adding versions to the repo for now. This change does not add a go.sum because this repo has no dependencies. The change was generated by running "go mod init" and "go mod tidy" using Go 1.11.5 in the top-level directory of the repository. Updates golang/go#28136 Change-Id: If6945f4bb17f7c84b53445054140ce9389767d89 Reviewed-on: https://go-review.googlesource.com/c/162977 Run-TryBot: Michael Matloob TryBot-Result: Gobot Gobot Reviewed-by: Dmitri Shuralyov --- go.mod | 1 + 1 file changed, 1 insertion(+) create mode 100644 go.mod diff --git a/go.mod b/go.mod new file mode 100644 index 00000000..6dfcf51e --- /dev/null +++ b/go.mod @@ -0,0 +1 @@ +module golang.org/x/sys