mirror of
https://github.com/elyby/chrly.git
synced 2025-02-17 07:48:05 +05:30
13 lines
141 B
Go
13 lines
141 B
Go
package main
|
|
|
|
import (
|
|
"runtime"
|
|
|
|
"elyby/minecraft-skinsystem/cmd"
|
|
)
|
|
|
|
func main() {
|
|
runtime.GOMAXPROCS(runtime.NumCPU())
|
|
cmd.Execute()
|
|
}
|