summary refs log tree commit diff stats
path: root/go.mod
diff options
context:
space:
mode:
authorBen Morrison <ben@gbmor.dev>2019-05-20 22:50:54 -0400
committerBen Morrison <ben@gbmor.dev>2019-05-21 03:42:13 -0400
commit2421e964d2e5e0cc739dee6ad6eb399d205d7a58 (patch)
tree5321bcbc1bb8a14b3c16c581ff0b41ba55b6dd51 /go.mod
parent505c5d87d32a20d02efc5ed297a24f04e15765d6 (diff)
downloadgetwtxt-2421e964d2e5e0cc739dee6ad6eb399d205d7a58.tar.gz
updated deps
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod5
1 files changed, 3 insertions, 2 deletions
diff --git a/go.mod b/go.mod
index 204565f..3566107 100644
--- a/go.mod
+++ b/go.mod
@@ -1,13 +1,14 @@
-module github.com/gbmor/getwtxt
+module github.com/getwtxt/getwtxt
 
 go 1.11
 
 require (
 	github.com/BurntSushi/toml v0.3.1 // indirect
 	github.com/fsnotify/fsnotify v1.4.7
-	github.com/getwtxt/registry v0.0.0-20190520044831-747da48b0a7c
+	github.com/getwtxt/registry v0.0.0-20190521074114-49b064b5d65f
 	github.com/gorilla/handlers v1.4.0
 	github.com/gorilla/mux v1.7.1
 	github.com/spf13/pflag v1.0.3
 	github.com/spf13/viper v1.3.2
+	github.com/syndtr/goleveldb v1.0.0
 )
> 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225