diff options
| author | nytpu <alex@nytpu.com> | 2021-03-19 08:29:44 -0600 |
|---|---|---|
| committer | nytpu <alex@nytpu.com> | 2021-03-19 08:29:44 -0600 |
| commit | 2974c5413c388ed904cb95bc1ba6bc7aea0b5e21 (patch) | |
| tree | 2252b6f339480be0ecdfee48f2125122d346bb98 /flags.go | |
| parent | db626e0c662896ad6483d8834b0546e2f09e1a49 (diff) | |
remove list command and instead write "subscriptions.gmi" & "feed.gmi"
Diffstat (limited to 'flags.go')
| -rw-r--r-- | flags.go | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -22,7 +22,6 @@ type command struct { // info about all the accepted commands var commandInfo = []command{ {"refresh", "Check for new updates to subscriptions"}, - {"list", "List all subscriptions"}, {"add", "Add a new subscription"}, {"remove", "Remove a subscription"}, {"help", "Print usage information"}, @@ -31,7 +30,6 @@ var commandInfo = []command{ var commands = map[string]*flag.FlagSet{ "refresh": flag.NewFlagSet("refresh", flag.ExitOnError), - "list": flag.NewFlagSet("list", flag.ExitOnError), "add": flag.NewFlagSet("add", flag.ExitOnError), "remove": flag.NewFlagSet("remove", flag.ExitOnError), } |
