mirror of
https://github.com/hacdias/webdav.git
synced 2024-04-21 12:32:06 +00:00
13 lines
140 B
Go
13 lines
140 B
Go
package main
|
|
|
|
import (
|
|
"runtime"
|
|
|
|
"github.com/hacdias/webdav/cmd"
|
|
)
|
|
|
|
func main() {
|
|
runtime.GOMAXPROCS(runtime.NumCPU())
|
|
cmd.Execute()
|
|
}
|