mirror of
https://github.com/outbackdingo/matchbox.git
synced 2026-01-27 10:19:35 +00:00
17 lines
280 B
Go
17 lines
280 B
Go
package cli
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// profileCmd represents the profile command
|
|
var profileCmd = &cobra.Command{
|
|
Use: "profile",
|
|
Short: "Manage machine profiles",
|
|
Long: `List and describe machine profiles`,
|
|
}
|
|
|
|
func init() {
|
|
RootCmd.AddCommand(profileCmd)
|
|
}
|