Files
pmg/cmd/cloud/cloud.go
T
Abhisek DattaandGitHub 887984612c 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
2026-04-13 13:40:18 +05:30

19 lines
296 B
Go

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
}