yr/cmd/root.go
Tim Hårek Andreassen d7d8ce6cd9
feat: Add coordinates to CLI
Signed-off-by: Tim Hårek Andreassen <tim@harek.no>
2024-09-29 21:46:34 +02:00

26 lines
522 B
Go

package cmd
import (
"os"
"github.com/spf13/cobra"
)
var rootCmd = &cobra.Command{
Use: "yr",
Short: "Get the weather for your desired location.",
Long: `Get the weather for your desired location.`,
}
func Execute() {
err := rootCmd.Execute()
if err != nil {
os.Exit(1)
}
}
func init() {
rootCmd.PersistentFlags().Bool("json", false, "Result in JSON")
rootCmd.PersistentFlags().Float64P("lon", "x", 0, "Longitude coordinate")
rootCmd.PersistentFlags().Float64P("lat", "y", 0, "Latitude coordinate")
}