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.
|
// Package game server API. |
|
// 服务器web协议 |
|
// |
|
// Host: 47.106.150.32:7615 |
|
// Version: 0.0.1 |
|
// |
|
// swagger:meta |
|
package web |
|
|
|
import ( |
|
"server/modules/web/values" |
|
) |
|
|
|
// swagger:parameters idOfVerifyPhoneCode |
|
type PhoneCodeverifyReq struct { |
|
// in:body |
|
Body values.PhoneCodeLoginReq |
|
}
|
|
|