about summary refs log tree commit diff stats
path: root/go.mod
diff options
context:
space:
mode:
authorBen Morrison <ben@gbmor.dev>2019-06-13 00:08:49 -0400
committerBen Morrison <ben@gbmor.dev>2019-06-13 00:08:49 -0400
commitb7e243ecf57a8c794c26d64343bad942f1ec09c9 (patch)
tree081ce1090a4d51d1f40bf0013a8d791090fd2cac /go.mod
parent8d61e22c21102417d0f90d149f58db65d3f64233 (diff)
downloadgetwtxt-b7e243ecf57a8c794c26d64343bad942f1ec09c9.tar.gz
made svc/ a package instead of a module for ease of development
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod22
1 files changed, 21 insertions, 1 deletions
diff --git a/go.mod b/go.mod
index cc1522a..23e4369 100644
--- a/go.mod
+++ b/go.mod
@@ -2,4 +2,24 @@ module github.com/getwtxt/getwtxt
 
 go 1.11
 
-require github.com/getwtxt/getwtxt/svc v0.0.0-20190613020412-dca21841d614
+require (
+	github.com/fsnotify/fsnotify v1.4.7
+	github.com/getwtxt/registry v0.2.3
+	github.com/golang/snappy v0.0.1 // indirect
+	github.com/gorilla/handlers v1.4.0
+	github.com/gorilla/mux v1.7.2
+	github.com/magiconair/properties v1.8.1 // indirect
+	github.com/mattn/go-sqlite3 v1.10.0
+	github.com/onsi/ginkgo v1.8.0 // indirect
+	github.com/onsi/gomega v1.5.0 // indirect
+	github.com/pelletier/go-toml v1.4.0 // indirect
+	github.com/spf13/afero v1.2.2 // indirect
+	github.com/spf13/jwalterweatherman v1.1.0 // indirect
+	github.com/spf13/pflag v1.0.3
+	github.com/spf13/viper v1.4.0
+	github.com/stretchr/testify v1.3.0 // indirect
+	github.com/syndtr/goleveldb v1.0.0
+	golang.org/x/net v0.0.0-20190611141213-3f473d35a33a // indirect
+	golang.org/x/sys v0.0.0-20190610200419-93c9922d18ae
+	golang.org/x/text v0.3.2 // indirect
+)