Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump cobra to 1.3.0, replace completion command #47

Merged
merged 1 commit into from Dec 15, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
75 changes: 0 additions & 75 deletions cmd/completion.go

This file was deleted.

1 change: 0 additions & 1 deletion cmd/root.go
Expand Up @@ -53,7 +53,6 @@ func init() {
rootCmd.AddCommand(newMessageCmd().cmd)
rootCmd.AddCommand(newMessageAttemptCmd().cmd)
rootCmd.AddCommand(newVerifyCmd().cmd)
rootCmd.AddCommand(newCompletionCmd().cmd)
rootCmd.AddCommand(newOpenCmd().cmd)
rootCmd.AddCommand(newListenCmd().cmd)
rootCmd.AddCommand(newImportCmd().cmd)
Expand Down
6 changes: 3 additions & 3 deletions go.mod
Expand Up @@ -5,13 +5,13 @@ go 1.16
require (
github.com/BurntSushi/toml v0.3.1
github.com/araddon/dateparse v0.0.0-20210429162001-6b43995a97de
github.com/fatih/color v1.7.0
github.com/fatih/color v1.13.0
github.com/gorilla/websocket v1.4.2
github.com/manifoldco/promptui v0.8.0
github.com/mitchellh/go-homedir v1.1.0
github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966
github.com/spf13/cobra v1.1.3
github.com/spf13/viper v1.7.1
github.com/spf13/cobra v1.3.0
github.com/spf13/viper v1.10.0
github.com/svix/svix-libs v0.37.0
github.com/tidwall/pretty v1.1.1
)