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