-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
48 lines (37 loc) · 823 Bytes
/
main.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
package main
import (
"fmt"
"os"
"github.com/spf13/cobra"
)
const DEFAULT_POLLING_INTERVAL int = 5
func init() {
rootCmd.AddCommand(versionCmd)
rootCmd.AddCommand(configCmd)
rootCmd.AddCommand(cliCmd)
cliCmd.AddCommand(cliCreateCmd)
cliCmd.AddCommand(cliDeleteCmd)
rootCmd.AddCommand(tokenCmd)
}
var (
builtCommit string
rootCmd = &cobra.Command{
Use: "utok",
Short: "A micro-client for generating tokens through the OpenID Connect Device flow.",
Long: "We should add something right?",
}
versionCmd = &cobra.Command{
Use: "version",
Short: "Get the tool's version.",
Run: func(cmd *cobra.Command, args []string) {
fmt.Printf("built commit: %s\n", builtCommit)
os.Exit(0)
},
}
)
func main() {
if err := rootCmd.Execute(); err != nil {
fmt.Println(err)
os.Exit(1)
}
}