mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
13 lines
152 B
Go
13 lines
152 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"runtime"
|
||
|
|
||
|
"github.com/filebrowser/filebrowser/v2/cmd"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
runtime.GOMAXPROCS(runtime.NumCPU())
|
||
|
cmd.Execute()
|
||
|
}
|