From 51ec2e69a8f63bac7bd344e123484645873ec2c3 Mon Sep 17 00:00:00 2001 From: Yuli Date: Sun, 23 Feb 2020 17:03:22 +0200 Subject: [PATCH] add go.mod file --- src/go.mod | 24 ++++++++++++++++++++++++ src/storage/go.mod | 3 +++ 2 files changed, 27 insertions(+) create mode 100644 src/go.mod create mode 100644 src/storage/go.mod diff --git a/src/go.mod b/src/go.mod new file mode 100644 index 0000000..b4cc8dd --- /dev/null +++ b/src/go.mod @@ -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 +) diff --git a/src/storage/go.mod b/src/storage/go.mod new file mode 100644 index 0000000..722078f --- /dev/null +++ b/src/storage/go.mod @@ -0,0 +1,3 @@ +module github.com/paranoidguy/databunker/src/storage + +go 1.13