package domain type RegisterRequest struct { Login string `json:"login"` Password string `json:"password"` } type RegisterResponse struct { Ok bool `json:"ok"` Message string `json:"message"` } type LogonRequest struct { Login string `json:"login"` Password string `json:"password"` } type LogonResponse struct { Ok bool `json:"ok"` Message string `json:"message"` } type LogoutRequest struct { } type ErrorJson struct { Code int `json:"code"` Message string `json:"message"` }