backy/cmd/root.go

41 lines
814 B
Go
Raw Normal View History

// root.go
// Copyright (C) Andrew Woodlee 2023
// License: Apache-2.0
2022-12-15 16:42:21 +00:00
package cmd
import (
"fmt"
"os"
"github.com/spf13/cobra"
)
var (
// Used for flags.
cfgFile string
verbose bool
rootCmd = &cobra.Command{
Use: "backy",
Short: "An easy-to-configure backup tool.",
Long: `Backy is a command-line application useful for configuring backups, or any commands run in sequence.`,
2022-12-15 16:42:21 +00:00
}
)
// Execute executes the root command.
func Execute() {
if err := rootCmd.Execute(); err != nil {
fmt.Println(err)
os.Exit(1)
}
2022-12-15 16:42:21 +00:00
}
func init() {
rootCmd.PersistentFlags().StringVarP(&cfgFile, "config", "f", "", "config file to read from")
2022-12-15 16:42:21 +00:00
rootCmd.PersistentFlags().BoolVarP(&verbose, "verbose", "v", false, "Sets verbose level")
2023-09-09 04:42:13 +00:00
rootCmd.AddCommand(backupCmd, execCmd, cronCmd, versionCmd, listCmd)
2022-12-15 16:42:21 +00:00
}