Mohammed Naser | dabb1dc | 2022-09-06 14:45:59 -0400 | [diff] [blame] | 1 | package main |
2 | |||||
3 | import ( | ||||
4 | "github.com/spf13/cobra" | ||||
5 | ) | ||||
6 | |||||
7 | var imageCmd = &cobra.Command{ | ||||
8 | Use: "image", | ||||
9 | Short: "Image sub-commands", | ||||
10 | } | ||||
11 | |||||
12 | func init() { | ||||
13 | rootCmd.AddCommand(imageCmd) | ||||
14 | } |