Gitiles
Code Review
Sign In
review.vexxhost.dev
/
atmosphere
/
7d3c4881bb31761f3ee8a552c7878bb72363a336
/
.
/
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)
}