/* Copyright © 2024 raul */ package cmd import ( "os" "github.com/spf13/cobra" ) var rootCmd = &cobra.Command{ Use: "aemet", Short: "API Server that fetches spanish weather data from the AEMET", Long: `API Server that fetches spanish weather data from the AEMET formatted in XML and translates it to JSON, optionally allowing to render the obtained data in a web page.`, } func Execute() { err := rootCmd.Execute() if err != nil { os.Exit(1) } } func init() { rootCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle") }