This commit is contained in:
2025-08-17 00:42:12 +02:00
parent 851ff89886
commit 54dcc7d006
3 changed files with 55 additions and 2 deletions

View File

@@ -8,6 +8,7 @@ import (
"cloudsave/cmd/cli/commands/remote"
"cloudsave/cmd/cli/commands/remove"
"cloudsave/cmd/cli/commands/run"
"cloudsave/cmd/cli/commands/show"
"cloudsave/cmd/cli/commands/sync"
"cloudsave/cmd/cli/commands/version"
"cloudsave/pkg/data"
@@ -48,6 +49,7 @@ func main() {
subcommands.Register(&run.RunCmd{Service: s}, "management")
subcommands.Register(&list.ListCmd{Service: s}, "management")
subcommands.Register(&remove.RemoveCmd{Service: s}, "management")
subcommands.Register(&show.ShowCmd{Service: s}, "management")
subcommands.Register(&apply.ListCmd{Service: s}, "restore")