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