mirror of
https://github.com/safedep/pmg.git
synced 2026-08-03 07:24:09 +02:00
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:
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user