mirror of
https://github.com/rsteube/carapace-bin.git
synced 2025-05-22 23:51:16 +00:00
20 lines
328 B
Go
20 lines
328 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/rsteube/carapace"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var systemCmd = &cobra.Command{
|
|
Use: "system",
|
|
Short: "Manage Docker",
|
|
GroupID: "management",
|
|
Run: func(cmd *cobra.Command, args []string) {},
|
|
}
|
|
|
|
func init() {
|
|
carapace.Gen(systemCmd).Standalone()
|
|
|
|
rootCmd.AddCommand(systemCmd)
|
|
}
|