12 lines
189 B
Go
12 lines
189 B
Go
|
package models
|
||
|
|
||
|
type RequestJokePost struct {
|
||
|
Key string `json:"string"`
|
||
|
Link string `json:"link"`
|
||
|
}
|
||
|
|
||
|
type RequestAuth struct {
|
||
|
Key string `json:"key"`
|
||
|
Token string `json:"token"`
|
||
|
}
|