jokes-bapak2/api/app/v1/models/request.go

17 lines
350 B
Go
Raw Normal View History

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
}