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
@@ -40,8 +40,9 @@ type EntryInfo struct {
// PosixfsCommand is the entrypoint for the posixfs command.
func PosixfsCommand(cfg *config.Config) *cobra.Command {
posixCmd := &cobra.Command{
Use: "posixfs",
Short: `cli tools to inspect and manipulate a posixfs storage.`,
Use: "posixfs",
Short: `cli tools to inspect and manipulate a posixfs storage.`,
GroupID: CommandGroupStorage,
}
posixCmd.AddCommand(consistencyCmd(cfg))