starter-kit/internal/transport/http/dto/error_response.go
ulflow_phattt2901 f4ef71b63b
Some checks failed
CI Pipeline / Security Scan (push) Failing after 5m24s
CI Pipeline / Lint (push) Failing after 5m30s
CI Pipeline / Test (push) Has been skipped
CI Pipeline / Build (push) Has been skipped
CI Pipeline / Notification (push) Successful in 1s
feat: implement user authentication system with JWT and role-based access control
2025-05-24 11:24:19 +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"`
}