main.go 129 Bytes
package main

import (
	_ "example.com/m/routers"
	"runtime"
)

func main() {
	runtime.GOMAXPROCS(runtime.NumCPU())
	Execute()
}