backblaze-backup/main.go

32 lines
817 B
Go
Raw Normal View History

package main
import (
"fmt"
"os"
"gitea.urkob.com/urko/backblaze-backup/cmd"
"github.com/spf13/cobra"
)
var rootCmd = &cobra.Command{
Use: "backblaze-backup",
Short: "Backblaze backup tool",
2023-07-18 15:00:12 +02:00
Long: `A tool to manage backup files and directories to Backblaze.`,
}
func init() {
2023-07-18 19:01:16 +02:00
rootCmd.AddCommand(cmd.Sync, cmd.Versions, cmd.Cleanup)
cmd.Sync.PersistentFlags().String("file", "", "absolute path of the file you want to upload to backblaze")
cmd.Sync.PersistentFlags().String("dir", "", "absolute path of the directory you want to upload to backblaze")
cmd.Sync.PersistentFlags().String("bucket", "", "backblaze bucket name")
2023-08-12 09:52:04 +02:00
cmd.Cleanup.PersistentFlags().String("bucket", "", "backblaze bucket name")
}
func main() {
if err := cmd.Sync.Execute(); err != nil {
fmt.Println(err)
os.Exit(1)
}
}