zee-solution/internal/transport/http/dto/error_response.go
2025-06-05 21:21:28 +07:00

9 lines
235 B
Go

package dto
// ErrorResponse định dạng phản hồi lỗi
// @Description Định dạng phản hồi lỗi
// @Description Error response format
type ErrorResponse struct {
Error string `json:"error" example:"error message"`
}