summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Burwell <ben@benburwell.com>2019-09-18 10:33:16 -0400
committerBen Burwell <ben@benburwell.com>2019-09-18 10:33:16 -0400
commitba5af93ddf8eb2d3711c757c393da4a01f52a0e4 (patch)
treea0650cf5b10babb81636ed14ccb7c98f7df57f0f
parent81f58028b6e7473a78d8de0070bd6511287fbe0a (diff)
switch to go modulesHEADmaster
-rw-r--r--Godeps/Godeps.json8
-rw-r--r--Godeps/_workspace/.gitignore2
-rw-r--r--go.mod3
3 files changed, 3 insertions, 10 deletions
diff --git a/Godeps/Godeps.json b/Godeps/Godeps.json
deleted file mode 100644
index e5e5bcd..0000000
--- a/Godeps/Godeps.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "ImportPath": "github.com/benburwell/zipserver",
- "GoVersion": "go1.5.1",
- "Packages": [
- "./..."
- ],
- "Deps": []
-}
diff --git a/Godeps/_workspace/.gitignore b/Godeps/_workspace/.gitignore
deleted file mode 100644
index f037d68..0000000
--- a/Godeps/_workspace/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-/pkg
-/bin
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..0ce07c7
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,3 @@
+module bnbl.io/zipserver
+
+go 1.13