package models type LoginRequest struct { Username string `json:"username"` Password string `json:"password"` } type LoginResponse struct { Message string `json:"message"` Role string `json:"role"` }