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