go.mod: add go version declaration

This declaration is automatically added by Go 1.13 if it doesn't exist
during any build step.  Since we don't want the file to be modified
during normal use, explicitly declare it as 1.11, since that's the
oldest version we currently support.
This commit is contained in:
brian m. carlson 2019-09-04 19:59:01 +00:00
parent cd83f4224c
commit 9b86505822
No known key found for this signature in database
GPG Key ID: 2D0C9BC12F82B3A1

2
go.mod

@ -21,3 +21,5 @@ require (
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a
)
go 1.11