summaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorEyal Posener <[email protected]>2019-10-23 23:03:05 +0300
committerGitHub <[email protected]>2019-10-23 23:03:05 +0300
commit98a0c28ec7908620d626d072df3a49c34eadc2b6 (patch)
treef2a8af9bf26cb8fca022da1246268969adc2d7ef /go.mod
parent2f2ff270a9f6adcef8351b1bdf5319b5d612b53f (diff)
parentf7264fe38585e1c6efe68ea27bc27747fc21cf84 (diff)
Merge pull request #102 from posener/sub-cmd-bug
Fix off-by-one error for argument from method
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod7
1 files changed, 6 insertions, 1 deletions
diff --git a/go.mod b/go.mod
index fef0c44..6d82a98 100644
--- a/go.mod
+++ b/go.mod
@@ -1,3 +1,8 @@
module github.com/posener/complete
-require github.com/hashicorp/go-multierror v1.0.0
+require (
+ github.com/hashicorp/go-multierror v1.0.0
+ github.com/stretchr/testify v1.4.0
+)
+
+go 1.13