Mohammed Naser | dabb1dc | 2022-09-06 14:45:59 -0400 | [diff] [blame] | 1 | package main |
2 | |||||
3 | import ( | ||||
4 | "fmt" | ||||
5 | "os" | ||||
6 | |||||
7 | "github.com/spf13/cobra" | ||||
8 | ) | ||||
9 | |||||
10 | var rootCmd = &cobra.Command{ | ||||
11 | Use: "atmosphere-ci", | ||||
12 | Short: "CLI tools for Atmosphere CI", | ||||
13 | } | ||||
14 | |||||
15 | func main() { | ||||
16 | if err := rootCmd.Execute(); err != nil { | ||||
17 | fmt.Fprintln(os.Stderr, err) | ||||
18 | os.Exit(1) | ||||
19 | } | ||||
20 | } |