commit | dabb1dcaea9d91a4beb3ff0d59f9bca26a71c190 | [log] [tgz] |
---|---|---|
author | Mohammed Naser <mnaser@vexxhost.com> | Tue Sep 06 14:45:59 2022 -0400 |
committer | Mohammed Naser <mnaser@vexxhost.com> | Tue Sep 06 18:08:48 2022 -0400 |
tree | d0475191ea96555190d83c37e82e3931a7947198 | |
parent | e24a0065ce0da67add25bb8a47fca7b9b2f2bbb4 [diff] [blame] |
build: add tool for managing repos
diff --git a/cmd/atmosphere-ci/image.go b/cmd/atmosphere-ci/image.go new file mode 100644 index 0000000..492d2b9 --- /dev/null +++ b/cmd/atmosphere-ci/image.go
@@ -0,0 +1,14 @@ +package main + +import ( + "github.com/spf13/cobra" +) + +var imageCmd = &cobra.Command{ + Use: "image", + Short: "Image sub-commands", +} + +func init() { + rootCmd.AddCommand(imageCmd) +}