You've already forked filebrowser
mirror of
https://github.com/filebrowser/filebrowser.git
synced 2025-11-26 14:25:26 +08:00
14 lines
149 B
Go
14 lines
149 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/filebrowser/filebrowser/v2/cmd"
|
|
)
|
|
|
|
func main() {
|
|
if err := cmd.Execute(); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|