Files
filebrowser/main.go
T

13 lines
152 B
Go
Raw Normal View History

2019-01-05 22:44:33 +00:00
package main
import (
"runtime"
"github.com/filebrowser/filebrowser/v2/cmd"
)
func main() {
runtime.GOMAXPROCS(runtime.NumCPU())
cmd.Execute()
}