blob: 492d2b992351d88f99933d39e3994ad2415a6b26 [file] [log] [blame]
Mohammed Naserdabb1dc2022-09-06 14:45:59 -04001package main
2
3import (
4 "github.com/spf13/cobra"
5)
6
7var imageCmd = &cobra.Command{
8 Use: "image",
9 Short: "Image sub-commands",
10}
11
12func init() {
13 rootCmd.AddCommand(imageCmd)
14}