Skip to content

Commit d7ce137

Browse files
author
JChaput
authored
Merge pull request #71 from SamWhited/support_modules
Support Go Modules
2 parents 2270ec2 + 245cb91 commit d7ce137

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed

example/003/go.mod

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
module github.com/go-zoo/bone/example/003
2+
3+
go 1.9
4+
5+
require (
6+
github.com/go-zoo/bone v0.0.0
7+
github.com/gorilla/context v1.1.1 // indirect
8+
github.com/gorilla/mux v1.6.2
9+
github.com/julienschmidt/httprouter v1.2.0
10+
)
11+
12+
replace github.com/go-zoo/bone v0.0.0 => ../../

example/003/go.sum

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
github.com/gorilla/context v1.1.1 h1:AWwleXJkX/nhcU9bZSnZoi3h/qGYqQAGhq6zZe/aQW8=
2+
github.com/gorilla/context v1.1.1/go.mod h1:kBGZzfjB9CEq2AlWe17Uuf7NDRt0dE0s8S51q0aT7Yg=
3+
github.com/gorilla/mux v1.6.2 h1:Pgr17XVTNXAk3q/r4CpKzC5xBM/qW1uVLV+IhRZpIIk=
4+
github.com/gorilla/mux v1.6.2/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs=
5+
github.com/julienschmidt/httprouter v1.2.0 h1:TDTW5Yz1mjftljbcKqRcrYhd4XeOoI98t+9HbQbYf7g=
6+
github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w=

go.mod

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module github.com/go-zoo/bone
2+
3+
go 1.9

0 commit comments

Comments
 (0)