summaryrefslogtreecommitdiff
path: root/complete.go
diff options
context:
space:
mode:
authorEyal Posener <[email protected]>2019-11-18 01:25:16 +0200
committerEyal Posener <[email protected]>2019-11-18 01:25:16 +0200
commit7c7ab2f59af947a5e7016df85ad353e10074bec4 (patch)
tree57096b7c2122809562e50818b2d61dd84ad7c9ce /complete.go
parenta7d83cca2fcb828c0eb73b67e2353a7f07a07417 (diff)
update module import path
Diffstat (limited to 'complete.go')
-rw-r--r--complete.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/complete.go b/complete.go
index 7e4a3d5..f64abd8 100644
--- a/complete.go
+++ b/complete.go
@@ -7,9 +7,9 @@ import (
"strconv"
"strings"
- "github.com/posener/complete/internal/arg"
- "github.com/posener/complete/internal/install"
- "github.com/posener/complete/internal/tokener"
+ "github.com/posener/complete/v2/internal/arg"
+ "github.com/posener/complete/v2/internal/install"
+ "github.com/posener/complete/v2/internal/tokener"
)
// Completer is an interface that a command line should implement in order to get bash completion.