feat: Add Cloud Endpoint Sync Commands (#216)

* feat: Add cloud sync command

* feat: Add pmg cloud commands

* fix: Code review fixes

* fix: Code review fixes

* fix: Code review fixes

* fix: Code review fixes

* fix: Code review fixes

* fix: Code review fixes
This commit is contained in:
Abhisek Datta
2026-04-13 13:40:18 +05:30
committed by GitHub
parent e67735c1c3
commit 887984612c
14 changed files with 453 additions and 92 deletions
+18
View File
@@ -0,0 +1,18 @@
package cloud
import (
"github.com/spf13/cobra"
)
func NewCloudCommand() *cobra.Command {
cmd := &cobra.Command{
Use: "cloud",
Short: "SafeDep Cloud operations",
}
cmd.AddCommand(newSyncCommand())
cmd.AddCommand(newLoginCommand())
cmd.AddCommand(newLogoutCommand())
return cmd
}