summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Flint <[email protected]>2018-11-19 19:04:03 -0800
committerAlex Flint <[email protected]>2018-11-19 19:04:03 -0800
commit92877db00983b003be9ab98f4d92768119e1f680 (patch)
tree53336ca27c618622e38cd7b4a002befd55e3ef97
parent6ab8ad5e1c5b25ca2783fe83f493c3ab471407e2 (diff)
add initial go.mod, go.sum
-rw-r--r--go.mod7
-rw-r--r--go.sum6
2 files changed, 13 insertions, 0 deletions
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..6eea393
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,7 @@
+module github.com/alexflint/go-scalar
+
+require (
+ github.com/davecgh/go-spew v1.1.1 // indirect
+ github.com/pmezard/go-difflib v1.0.0 // indirect
+ github.com/stretchr/testify v1.2.2
+)
diff --git a/go.sum b/go.sum
new file mode 100644
index 0000000..e03ee77
--- /dev/null
+++ b/go.sum
@@ -0,0 +1,6 @@
+github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
+github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
+github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
+github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
+github.com/stretchr/testify v1.2.2 h1:bSDNvY7ZPG5RlJ8otE/7V6gMiyenm9RtJ7IUVIAoJ1w=
+github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=