mirror of
https://github.com/filebrowser/filebrowser.git
synced 2025-07-27 10:20:28 +00:00
15 lines
219 B
Go
15 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))
|
|
}
|
|
}
|