2022-01-21 18:39:57 +08:00
|
|
|
package cms_api_struct
|
2022-02-12 17:13:31 +08:00
|
|
|
|
|
|
|
|
type AdminLoginRequest struct {
|
|
|
|
|
AdminName string `json:"admin_name" binding:"required"`
|
|
|
|
|
Secret string `json:"secret" binding:"required"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type AdminLoginResponse struct {
|
|
|
|
|
Token string `json:"token"`
|
|
|
|
|
}
|