api-entities/http/identity.go
2022-12-18 21:10:32 +01:00

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"`
}