add go.mod file

This commit is contained in:
Yuli
2020-02-23 17:03:22 +02:00
parent a4ef485352
commit 51ec2e69a8
2 changed files with 27 additions and 0 deletions

24
src/go.mod Normal file
View File

@@ -0,0 +1,24 @@
module github.com/paranoidguy/databunker/src
go 1.13
replace github.com/paranoidguy/databunker/src/storage => ./storage
require (
github.com/evanphx/json-patch v4.5.0+incompatible
github.com/fatih/structs v1.1.0
github.com/gobuffalo/packr v1.30.1
github.com/hashicorp/go-uuid v1.0.2
github.com/julienschmidt/httprouter v1.3.0
github.com/kelseyhightower/envconfig v1.4.0
github.com/mattn/go-sqlite3 v2.0.3+incompatible // indirect
github.com/paranoidguy/databunker/src/storage v0.0.0
github.com/prometheus/client_golang v1.4.1
github.com/schollz/sqlite3dump v1.2.4 // indirect
github.com/tidwall/gjson v1.5.0
github.com/ttacon/builder v0.0.0-20170518171403-c099f663e1c2 // indirect
github.com/ttacon/libphonenumber v1.1.0
go.mongodb.org/mongo-driver v1.3.0
golang.org/x/sys v0.0.0-20200219091948-cb0a6d8edb6c
gopkg.in/yaml.v2 v2.2.8
)

3
src/storage/go.mod Normal file
View File

@@ -0,0 +1,3 @@
module github.com/paranoidguy/databunker/src/storage
go 1.13