draincloud-core/internal/domain/requests.go

20 lines
338 B
Go
Raw Normal View History

2024-09-27 22:37:58 +00:00
package domain
type RegisterRequest struct {
Login string `json:"login"`
Password string `json:"password"`
}
2024-09-30 22:21:37 +00:00
type RegisterResponse struct {
Ok bool `json:"ok"`
Message string `json:"message"`
}
type LoginRequest struct {
Login string `json:"login"`
Password string `json:"password"`
}
type LogoutRequest struct {
}