summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2020-11-21 00:21:32 -0700
committerLuke Shumaker <lukeshu@lukeshu.com>2020-11-21 00:21:32 -0700
commit9f24b0d0bfca2938f2471c123074cc5e65eebf8e (patch)
tree8a8f8a2b6830d4952219a91950d9d2239c5bba38
parent269c4ee8ddb9f9f93d31342ec5306174d2ba4ffd (diff)
Add go.mod file
-rw-r--r--go.mod5
-rw-r--r--go.sum2
2 files changed, 7 insertions, 0 deletions
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..c622260
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,5 @@
+module git.lukeshu.com/go/libfastimport
+
+go 1.15
+
+require github.com/pkg/errors v0.9.1
diff --git a/go.sum b/go.sum
new file mode 100644
index 0000000..7c401c3
--- /dev/null
+++ b/go.sum
@@ -0,0 +1,2 @@
+github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
+github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=