2023-04-13 11:43:03 +02:00

20 lines
330 B
Go

package cmd
import (
"github.com/rsteube/carapace"
"github.com/spf13/cobra"
)
var configCmd = &cobra.Command{
Use: "config",
Short: "Manage Swarm configs",
GroupID: "swarm",
Run: func(cmd *cobra.Command, args []string) {},
}
func init() {
carapace.Gen(configCmd).Standalone()
rootCmd.AddCommand(configCmd)
}