mirror of
https://github.com/filebrowser/filebrowser
synced 2026-04-27 07:57:18 +00:00
13 lines
148 B
Go
13 lines
148 B
Go
|
|
package cmd
|
||
|
|
|
||
|
|
import (
|
||
|
|
"log"
|
||
|
|
)
|
||
|
|
|
||
|
|
// Execute executes the commands.
|
||
|
|
func Execute() {
|
||
|
|
if err := rootCmd.Execute(); err != nil {
|
||
|
|
log.Fatal(err)
|
||
|
|
}
|
||
|
|
}
|