Commit 5888000968edfdeeed5b40de58d326af79250bd9

Authored by 陆恒
1 parent 56d8c403
Exists in master

提交

Showing 1 changed file with 6 additions and 0 deletions   Show diff stats
src/HttpServer/logic/logic.go
... ... @@ -32,6 +32,12 @@ func MyInit() {
32 32 //初始化彩池
33 33 NewCaiPiaoRound(0, 150, 150, 1)
34 34 }
  35 +
  36 + for i := 0; i < 200000; i++ {
  37 + randnum := rand.Intn(240) + 1
  38 + SetCaiPiaoFake(randnum, i)
  39 + }
  40 +
35 41 }
36 42  
37 43 func SetHeader(w http.ResponseWriter) {
... ...