chore: remove GOMAXPROCS setting (#1803)

This commit is contained in:
sejinP 2022-02-09 03:56:04 +09:00 committed by GitHub
parent 205f11d677
commit ec45ee471f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 3 deletions

View File

@ -1,12 +1,9 @@
package main package main
import ( import (
"runtime"
"github.com/filebrowser/filebrowser/v2/cmd" "github.com/filebrowser/filebrowser/v2/cmd"
) )
func main() { func main() {
runtime.GOMAXPROCS(runtime.NumCPU())
cmd.Execute() cmd.Execute()
} }