Files
Archive/filebrowser/cmd/cmd.go
2024-03-05 02:32:38 -08:00

13 lines
148 B
Go

package cmd
import (
"log"
)
// Execute executes the commands.
func Execute() {
if err := rootCmd.Execute(); err != nil {
log.Fatal(err)
}
}