working commit

This commit is contained in:
2026-02-14 18:45:11 +02:00
parent 8d46c6a677
commit 53ed35dc08
16 changed files with 144 additions and 120 deletions
+5
View File
@@ -35,6 +35,7 @@ type Util struct {
FileUtil
ImageUtil
AccountUtil
GrantUtil
rootCmd cobra.Command
}
@@ -54,9 +55,13 @@ func (util *Util) Build() error {
rootCmd.AddCommand(util.CreateFileCmds())
rootCmd.AddCommand(util.CreateFilesCmds())
rootCmd.AddCommand(util.CreateImageCmds())
rootCmd.AddCommand(util.CreateAccountCmds())
rootCmd.AddCommand(util.CreateAccountsCmds())
rootCmd.AddCommand(util.CreateGrantCmds())
rootCmd.AddCommand(util.CreateGrantsCmds())
util.rootCmd = rootCmd
return err