Files
2026-07-04 17:20:28 +08:00

14 lines
183 B
Go

package backup
import (
"fmt"
"os"
)
// Execute runs the root command.
func Execute() {
if err := rootCmd.Execute(); err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
}