enhancement(cli): group commands by topic

This commit is contained in:
Florian Schade
2025-12-15 16:40:27 +01:00
parent 879de39129
commit 9904e5b932
9 changed files with 36 additions and 22 deletions
+3 -2
View File
@@ -33,8 +33,9 @@ import (
// DecomposedfsCommand is the entrypoint for the groups command.
func DecomposedfsCommand(cfg *config.Config) *cobra.Command {
decomposedCmd := &cobra.Command{
Use: "decomposedfs",
Short: `cli tools to inspect and manipulate a decomposedfs storage.`,
Use: "decomposedfs",
Short: `cli tools to inspect and manipulate a decomposedfs storage.`,
GroupID: CommandGroupStorage,
}
decomposedCmd.AddCommand(metadataCmd(cfg), checkCmd(cfg))
return decomposedCmd