代码拉取完成,页面将自动刷新
package main
import (
"fmt"
"manygo/doconfig"
"manygo/doweb"
"manygo/mytools"
// "runtime"
"strings"
)
func main() {
fmt.Println("start,loading...if no message,please Enter~")
// rt := runtime.NumCPU()
// fmt.Println("当前CPU为" + mytools.Int2String(rt) + "核")
// fmt.Println("")
// runtime.GOMAXPROCS(rt)
initInput()
if v, ok := doconfig.Config["ismaster"]; ok && v == "1" {
doweb.MasterStart()
} else {
doweb.ClientStart()
}
}
func initInput() {
if !doweb.StartInit() {
v := mytools.MyInput("Is master?[y/q/xxx.xxx.xxx.xxx]")
if strings.ToUpper(v) == "Y" || strings.Trim(v, " ") == "" {
doconfig.Config["ismaster"] = "1"
} else if strings.ToUpper(v) == "Q" {
mytools.MYClose(1)
} else {
doconfig.Config["masterip"] = v
}
} else {
v := mytools.MyInput("Is connect local?[y/q/xxx.xxx.xxx.xxx]")
if strings.ToUpper(v) == "Y" || strings.Trim(v, " ") == "" {
doconfig.Config["ismaster"] = "0"
doconfig.Config["masterip"] = "127.0.0.1"
} else if strings.ToUpper(v) == "Q" {
mytools.MYClose(1)
} else {
doconfig.Config["masterip"] = v
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。