2021-07-09 12:13:19 +00:00
|
|
|
package models
|
|
|
|
|
|
|
|
type RequestJokePost struct {
|
2021-07-14 18:17:01 +00:00
|
|
|
Link string `json:"link" form:"link"`
|
2021-07-09 12:13:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type RequestAuth struct {
|
2021-07-14 18:17:01 +00:00
|
|
|
Key string `json:"key" form:"key"`
|
|
|
|
Token string `json:"token" form:"token"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Today struct {
|
|
|
|
Date string `redis:"today:date"`
|
|
|
|
Image string `redis:"today:image"`
|
|
|
|
ContentType string `redis:"today:contentType"`
|
2021-07-09 12:13:19 +00:00
|
|
|
}
|