xmr-remote-nodes/cmd/cmd.go
ditatompel e9cacb478c
feat: Allow user to specify custom .env location
This feature can also be useful for running tests in CI.
2024-06-18 04:23:08 +07:00

40 lines
626 B
Go

package cmd
import (
"os"
"xmr-remote-nodes/cmd/client"
"xmr-remote-nodes/internal/config"
"github.com/spf13/cobra"
)
const AppVer = "0.0.1"
var configFile string
var Root = &cobra.Command{
Use: "xmr-nodes",
Short: "XMR Nodes",
Version: AppVer,
}
func Execute() {
err := Root.Execute()
if err != nil {
os.Exit(1)
}
}
func init() {
cobra.OnInitialize(initConfig)
Root.PersistentFlags().StringVarP(&configFile, "config-file", "c", "", "Default to .env")
Root.AddCommand(client.ProbeCmd)
}
func initConfig() {
if configFile != "" {
config.LoadAll(configFile)
return
}
config.LoadAll(".env")
}