mirror of
https://github.com/filebrowser/filebrowser.git
synced 2026-01-23 10:45:24 +00:00
14 lines
219 B
Go
14 lines
219 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/filebrowser/filebrowser/v2/cmd"
|
|
"github.com/filebrowser/filebrowser/v2/errors"
|
|
)
|
|
|
|
func main() {
|
|
if err := cmd.Execute(); err != nil {
|
|
os.Exit(errors.GetExitCode(err))
|
|
}
|
|
}
|