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