-
Notifications
You must be signed in to change notification settings - Fork 157
/
root.go
62 lines (50 loc) · 1.28 KB
/
root.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package cli
import (
"fmt"
"os"
"github.com/spf13/cobra"
)
// Version will be linked by an ldflag during build
var Version = "v0.1.0-alpha.0"
var printVersion bool
var configDirectory string
// rootCmd represents the base command when called without any subcommands
var rootCmd = &cobra.Command{
Use: "hatchet-admin",
Short: "hatchet-admin performs administrative tasks for a Hatchet instance.",
PersistentPreRun: func(cmd *cobra.Command, args []string) {
if printVersion {
fmt.Println(Version)
os.Exit(0)
}
// var err error
// configLoader := loader.NewConfigLoader(configDirectory)
// sc, err = configLoader.LoadServerConfig()
// if err != nil {
// log.Printf("Fatal: could not load server config: %v\n", err)
// os.Exit(1)
// }
},
Run: func(cmd *cobra.Command, args []string) {
},
}
// Execute adds all child commands to the root command and sets flags appropriately.
// This is called by main.main(). It only needs to happen once to the rootCmd.
func Execute() {
rootCmd.PersistentFlags().BoolVar(
&printVersion,
"version",
false,
"print version and exit.",
)
rootCmd.PersistentFlags().StringVar(
&configDirectory,
"config",
"",
"The path the config folder.",
)
if err := rootCmd.Execute(); err != nil {
fmt.Println(err)
os.Exit(1)
}
}