Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
39 Zeilen
800 B
39 Zeilen
800 B
package main
|
|
|
|
import (
|
|
"github.com/Albert-Zhan/httpc"
|
|
"github.com/unknwon/goconfig"
|
|
"github.com/ztino/jd_seckill/cmd"
|
|
"github.com/ztino/jd_seckill/common"
|
|
"github.com/ztino/jd_seckill/log"
|
|
"os"
|
|
"runtime"
|
|
)
|
|
|
|
func init() {
|
|
//日志初始化
|
|
if !common.IsDir("./logs/") {
|
|
_ = os.Mkdir("./logs/", 0777)
|
|
}
|
|
|
|
//客户端设置初始化
|
|
common.Client=httpc.NewHttpClient()
|
|
common.CookieJar=httpc.NewCookieJar()
|
|
common.Client.SetCookieJar(common.CookieJar)
|
|
|
|
//配置文件初始化
|
|
confFile:="./conf.ini"
|
|
var err error
|
|
if common.Config,err=goconfig.LoadConfigFile(confFile);err!=nil {
|
|
log.Println("配置文件不存在,程序退出")
|
|
os.Exit(0)
|
|
}
|
|
|
|
//抢购状态管道
|
|
common.SeckillStatus=make(chan bool)
|
|
}
|
|
|
|
func main() {
|
|
runtime.GOMAXPROCS(runtime.NumCPU())
|
|
cmd.Execute()
|
|
}
|