Commit eaf9b6d69a5323629f0aa6902bbee1c628738a7f
1 parent
89c65140
Exists in
master
提交
Showing
1 changed file
with
8 additions
and
8 deletions
Show diff stats
src/HttpServer/logic/httpserver.go
| ... | ... | @@ -152,14 +152,14 @@ func startServerHttpServe() { |
| 152 | 152 | http.HandleFunc("/api/user/info", UserInfo) //个人信息 |
| 153 | 153 | http.HandleFunc("/api/ad/add", AddAd) //看广告 |
| 154 | 154 | //新增的接口 |
| 155 | - http.HandleFunc("/happycat/getrandredbag", Getrandredbag) //领取随机红包 | |
| 156 | - http.HandleFunc("/happycat/generatebox", Generatebox) //请求刷出空格礼包 | |
| 157 | - http.HandleFunc("/happycat/getboxreward", Getboxreward) // 请求领取空格礼包 | |
| 158 | - http.HandleFunc("/happycat/getflyboxreward", Getflyboxreward) // 请求领取飞天宝箱 | |
| 159 | - http.HandleFunc("/happycat/querygetcashinfo", Querygetcashinfo) // 请求提现档位信息 | |
| 160 | - http.HandleFunc("/happycat/getcash", Getcash) // 请求提现 | |
| 161 | - http.HandleFunc("/happycat/getcashrecord", Getcashrecord) // 请求提现 | |
| 162 | - http.HandleFunc("/happycat/gethorsemessage", Gethorsemessage) // 请求跑马灯 | |
| 155 | + http.HandleFunc("/api/happycat/getrandredbag", Getrandredbag) //领取随机红包 | |
| 156 | + http.HandleFunc("/api/happycat/generatebox", Generatebox) //请求刷出空格礼包 | |
| 157 | + http.HandleFunc("/api/happycat/getboxreward", Getboxreward) // 请求领取空格礼包 | |
| 158 | + http.HandleFunc("/api/happycat/getflyboxreward", Getflyboxreward) // 请求领取飞天宝箱 | |
| 159 | + http.HandleFunc("/api/happycat/querygetcashinfo", Querygetcashinfo) // 请求提现档位信息 | |
| 160 | + http.HandleFunc("/api/happycat/getcash", Getcash) // 请求提现 | |
| 161 | + http.HandleFunc("/api/happycat/getcashrecord", Getcashrecord) // 请求提现 | |
| 162 | + http.HandleFunc("/api/happycat/gethorsemessage", Gethorsemessage) // 请求跑马灯 | |
| 163 | 163 | |
| 164 | 164 | /////---------------------------------------------------------------------old |
| 165 | 165 | //http.HandleFunc("/happycat/exchangetwoPos", ExchangePos) //交换位置 | ... | ... |