YouChuKoffee/app/http/requestmapping/front.go

13 lines
311 B
Go
Raw Normal View History

2024-06-17 14:18:39 +08:00
package requestmapping
2024-06-17 16:29:39 +08:00
import "qteam/app/constants/common"
2024-06-17 14:18:39 +08:00
var FrontRequestMap = map[string]func() interface{}{
//"/v1/login": func() interface{} {
// return new(front.LoginRequest)
//},
2024-06-17 16:29:39 +08:00
// 奶茶专区代金券列表
common.FRONT_API_V1 + "/VoucherList": func() interface{} { return new(struct{}) },
2024-06-17 14:18:39 +08:00
}