identity-service/internal/app/definition/auth.go

10 lines
158 B
Go
Raw Normal View History

2022-06-19 15:19:05 +02:00
package definition
type AuthLoginRequest struct {
Username string `json:"username"`
Password string `json:"password"`
}
type AuthLoginResponse struct {
}