Gitiles
Code Review
Sign In
review.vexxhost.dev
/
atmosphere
/
66a446c82e9922dba5eab5999d2a3ca9271225f9
/
.
/
cmd
/
atmosphere-ci
/
image.go
blob: 492d2b992351d88f99933d39e3994ad2415a6b26 [
file
] [
log
] [
blame
]
package main
import (
"github.com/spf13/cobra"
)
var imageCmd = &cobra.Command{
Use: "image",
Short: "Image sub-commands",
}
func init() {
rootCmd.AddCommand(imageCmd)
}