mirror of
https://github.com/elyby/chrly.git
synced 2024-11-16 18:22:58 +05:30
13 lines
137 B
Go
13 lines
137 B
Go
package main
|
|
|
|
import (
|
|
"runtime"
|
|
|
|
"github.com/elyby/chrly/cmd"
|
|
)
|
|
|
|
func main() {
|
|
runtime.GOMAXPROCS(runtime.NumCPU())
|
|
cmd.Execute()
|
|
}
|