diff options
| author | Franck Cuny <franck@fcuny.net> | 2021-05-19 19:17:46 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2022-06-13 17:20:38 -0700 |
| commit | 4463b4a1df5d1ab205537f484d2c30517be41d8c (patch) | |
| tree | b90fc2b513e8bc6f85db0559200c107610c6f98c /users/fcuny/exp/buckit/list.go | |
| parent | github: don't install libpcap (diff) | |
| download | infra-4463b4a1df5d1ab205537f484d2c30517be41d8c.tar.gz | |
delete reference to namespaces
We don't need namespaces, a better abstraction is to use different
buckets, as this provides a better abstraction to manage quotas and
permissions.
Diffstat (limited to '')
| -rw-r--r-- | users/fcuny/exp/buckit/list.go | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/users/fcuny/exp/buckit/list.go b/users/fcuny/exp/buckit/list.go index 5d81c34..1c080ab 100644 --- a/users/fcuny/exp/buckit/list.go +++ b/users/fcuny/exp/buckit/list.go @@ -5,10 +5,9 @@ import ( ) var listCmd = &cli.Command{ - Name: "list", - Usage: "List namespaces or files within a namespace", - Action: listAction, - ArgsUsage: "[namespace]", + Name: "list", + Usage: "List packages", + Action: listAction, } func listAction(ctx *cli.Context) error { |
