Skip to content

Commit f72545c

Browse files
authored
fea(module) add Go module support (#61)
1 parent f7723b0 commit f72545c

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

go.mod

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
module github.com/zegl/goriak
2+
3+
require (
4+
github.com/basho/backoff v0.0.0-20150307023525-2ff7c4694083 // indirect
5+
github.com/basho/riak-go-client v0.0.0-20170327205844-5587c16e0b8b
6+
github.com/golang/protobuf v1.1.0 // indirect
7+
)

go.sum

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
github.com/basho/backoff v0.0.0-20150307023525-2ff7c4694083 h1:GKs410QTI0WKMlVOHG3C5894qNC+iLT0gKd3llmk8Q4=
2+
github.com/basho/backoff v0.0.0-20150307023525-2ff7c4694083/go.mod h1:LPMmhtk79U7hVIuDjCUSLi5eujsYZhjUYremMNOd7/Y=
3+
github.com/basho/riak-go-client v0.0.0-20170327205844-5587c16e0b8b h1:f0tQ8Qe56AQUC6S6KLA4O/WKktzOkE0WOVXoYG+1iuE=
4+
github.com/basho/riak-go-client v0.0.0-20170327205844-5587c16e0b8b/go.mod h1:/kA2cT67OJUBL2iod0m2oK9iIOzp++uogoqJRLWFeCo=
5+
github.com/basho/riak-go-client v1.7.0 h1:tswHqvworxn0sGV8lL4HiPjrwWUqdhlsLbtXscUTbKo=
6+
github.com/basho/riak-go-client v1.7.0/go.mod h1:/kA2cT67OJUBL2iod0m2oK9iIOzp++uogoqJRLWFeCo=
7+
github.com/golang/protobuf v1.1.0 h1:0iH4Ffd/meGoXqF2lSAhZHt8X+cPgkfn/cb6Cce5Vpc=
8+
github.com/golang/protobuf v1.1.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=

0 commit comments

Comments
 (0)