You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
686 B
34 lines
686 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"
|
|
"log"
|
|
"os"
|
|
"runtime"
|
|
)
|
|
|
|
func init() {
|
|
//客户端设置初始化
|
|
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()
|
|
}
|