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