wallhaven_dl/cmd/root.go
2023-10-22 14:40:26 -07:00

22 lines
302 B
Go

package cmd
import (
"fmt"
"os"
"github.com/spf13/cobra"
)
var rootCmd = &cobra.Command{
Use: "wallhaven_dl",
Short: "A wallpaper downloader and setter",
}
// Execute executes the root command.
func Execute() {
if err := rootCmd.Execute(); err != nil {
fmt.Println(err)
os.Exit(1)
}
}