-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathroot.go
38 lines (32 loc) · 1.09 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
package cmd
import (
"fmt"
"github.com/pterm/pterm"
"github.com/spf13/cobra"
"os"
)
var rootCmd = &cobra.Command{
Use: "rwz",
Short: "A wizard for Nostr relay runners",
Long: `rwz is a CLI tool for Nostr relay operators that
helps install and configure your specified relay.`,
}
// 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() {
err := rootCmd.Execute()
if err != nil {
pterm.Println()
pterm.Error.Println(fmt.Sprintf("Failed to add child commands to the root command: %v", err))
os.Exit(1)
}
}
func init() {
// Here you will define your flags and configuration settings.
// Cobra supports persistent flags, which, if defined here,
// will be global for your application.
// rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file (default is $HOME/.rwz.yaml)")
// Cobra also supports local flags, which will only run
// when this action is called directly.
// rootCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
}