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

10 lines
158 B
Go

package definition
type AuthLoginRequest struct {
Username string `json:"username"`
Password string `json:"password"`
}
type AuthLoginResponse struct {
}