[server] Re-enable admin storage command

This commit is contained in:
Abhishek Shroff
2025-06-08 00:39:25 +05:30
parent a1c04c5061
commit d663a3eedc
5 changed files with 7 additions and 4 deletions

View File

@@ -2,6 +2,7 @@ package admin
import (
"github.com/shroff/phylum/server/internal/command/admin/schema"
"github.com/shroff/phylum/server/internal/command/admin/storage"
"github.com/shroff/phylum/server/internal/command/admin/user"
"github.com/spf13/cobra"
)
@@ -14,7 +15,7 @@ func SetupCommand() *cobra.Command {
cmd.AddCommand([]*cobra.Command{
user.SetupCommand(),
schema.SetupCommand(),
// storage.SetupCommand(),
storage.SetupCommand(),
}...)
return cmd