aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny/exp/buckit/list.go
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2021-05-19 19:17:46 -0700
committerFranck Cuny <franck@fcuny.net>2022-06-13 17:20:38 -0700
commit4463b4a1df5d1ab205537f484d2c30517be41d8c (patch)
treeb90fc2b513e8bc6f85db0559200c107610c6f98c /users/fcuny/exp/buckit/list.go
parentgithub: don't install libpcap (diff)
downloadinfra-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.go7
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 {