1 Star 6 Fork 5

Rockman0/jd_seckill

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.go 686 Bytes
一键复制 编辑 原始数据 按行查看 历史
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()
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/rockman0/jd_seckill.git
git@gitee.com:rockman0/jd_seckill.git
rockman0
jd_seckill
jd_seckill
main

搜索帮助