11 lines
185 B
Go
11 lines
185 B
Go
|
package http
|
||
|
|
||
|
type AuthLoginRequest struct {
|
||
|
Username string `json:"username"`
|
||
|
Password string `json:"password"`
|
||
|
}
|
||
|
|
||
|
type AuthLoginResponse struct {
|
||
|
Token string `json:"jwt_token"`
|
||
|
}
|