Skip to content

Commit

Permalink
Merge pull request #71 from SamWhited/support_modules
Browse files Browse the repository at this point in the history
Support Go Modules
  • Loading branch information
JChaput authored Jan 17, 2019
2 parents 2270ec2 + 245cb91 commit d7ce137
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
12 changes: 12 additions & 0 deletions example/003/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
module github.com/go-zoo/bone/example/003

go 1.9

require (
github.com/go-zoo/bone v0.0.0
github.com/gorilla/context v1.1.1 // indirect
github.com/gorilla/mux v1.6.2
github.com/julienschmidt/httprouter v1.2.0
)

replace github.com/go-zoo/bone v0.0.0 => ../../
6 changes: 6 additions & 0 deletions example/003/go.sum
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
github.com/gorilla/context v1.1.1 h1:AWwleXJkX/nhcU9bZSnZoi3h/qGYqQAGhq6zZe/aQW8=
github.com/gorilla/context v1.1.1/go.mod h1:kBGZzfjB9CEq2AlWe17Uuf7NDRt0dE0s8S51q0aT7Yg=
github.com/gorilla/mux v1.6.2 h1:Pgr17XVTNXAk3q/r4CpKzC5xBM/qW1uVLV+IhRZpIIk=
github.com/gorilla/mux v1.6.2/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs=
github.com/julienschmidt/httprouter v1.2.0 h1:TDTW5Yz1mjftljbcKqRcrYhd4XeOoI98t+9HbQbYf7g=
github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w=
3 changes: 3 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module github.com/go-zoo/bone

go 1.9

0 comments on commit d7ce137

Please sign in to comment.