Files
matchbox/bootcfg/cli/ignition.go
Dalton Hubble 8a846d2765 bootcfg/rpc: Add IgnitionPut endpoint to gRPC API
* Add `bootcmd ignition create -f file` CLI command
2016-04-20 13:27:33 -07:00

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)
}