blob: 2ab4d4a38a3f27afdd7ac3862e74aa0fe172f6cd [file] [log] [blame]
package main
import (
"github.com/spf13/cobra"
)
var imageRepoCmd = &cobra.Command{
Use: "repo",
Short: "Image repository sub-commands",
}
func init() {
imageCmd.AddCommand(imageRepoCmd)
}