api-entities/http/identity.go

11 lines
185 B
Go
Raw Permalink Normal View History

2022-12-18 20:51:26 +01:00
package http
type AuthLoginRequest struct {
Username string `json:"username"`
Password string `json:"password"`
}
type AuthLoginResponse struct {
Token string `json:"jwt_token"`
}