micro-filebrowser/cmd_old/cmd.go

13 lines
148 B
Go
Raw Permalink Normal View History

2025-05-22 06:26:07 +00:00
package cmd
import (
"log"
)
// Execute executes the commands.
func Execute() {
if err := rootCmd.Execute(); err != nil {
log.Fatal(err)
}
}