filebrowser/backend/cmd/cmd.go

13 lines
148 B
Go
Raw Normal View History

2023-09-02 17:24:55 +00:00
package cmd
import (
"log"
)
// Execute executes the commands.
func Execute() {
if err := rootCmd.Execute(); err != nil {
log.Fatal(err)
}
}