From 4ad33697b9e349b9da1a54e9829d059f21d1d317 Mon Sep 17 00:00:00 2001 From: Sam Whited Date: Thu, 10 Jan 2019 15:36:10 -0600 Subject: [PATCH] Support Go Modules --- .travis.yml | 3 ++- go.mod | 5 +++++ go.sum | 7 +++++++ 3 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 go.mod create mode 100644 go.sum diff --git a/.travis.yml b/.travis.yml index 8bc89b8..baf3bd3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,7 @@ language: go go: - - 1.6.3 + - 1.10.x + - 1.11.x env: - "PATH=/home/travis/gopath/bin:$PATH" before_install: diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..a6d7631 --- /dev/null +++ b/go.mod @@ -0,0 +1,5 @@ +module github.com/husobee/vestigo + +go 1.9 + +require github.com/stretchr/testify v1.3.0 diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..4347755 --- /dev/null +++ b/go.sum @@ -0,0 +1,7 @@ +github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8= +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q= +github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=