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/main.go b/cmd/atmosphere-ci/main.go new file mode 100644 index 0000000..48e4f2e --- /dev/null +++ b/cmd/atmosphere-ci/main.go
@@ -0,0 +1,20 @@ +package main + +import ( + "fmt" + "os" + + "github.com/spf13/cobra" +) + +var rootCmd = &cobra.Command{ + Use: "atmosphere-ci", + Short: "CLI tools for Atmosphere CI", +} + +func main() { + if err := rootCmd.Execute(); err != nil { + fmt.Fprintln(os.Stderr, err) + os.Exit(1) + } +}