filebrowser/main.go
Henrique Dias c903619caf feat: go.mod on 2
License: MIT
Signed-off-by: Henrique Dias <hacdias@gmail.com>
2019-01-05 16:10:55 +00:00

14 lines
191 B
Go

//go:generate cd http && rice embed-go
package main
import (
"runtime"
"github.com/filebrowser/filebrowser/v2/cmd"
)
func main() {
runtime.GOMAXPROCS(runtime.NumCPU())
cmd.Execute()
}