Files
open-im-server/pkg/cms_api_struct/admin.go
T

10 lines
229 B
Go
Raw Normal View History

2023-06-29 22:35:31 +08:00
package cms_api_struct
type AdminLoginRequest struct {
AdminName string `json:"admin_name" binding:"required"`
Secret string `json:"secret" binding:"required"`
}
type AdminLoginResponse struct {
Token string `json:"token"`
}