Files
test_deploy/internal/http/swagger/models.go
Alex Shevchuk 61fc0d2747
Some checks failed
Deploy Production / Deploy to Staging (push) Has been skipped
Go Linter / Run golangci-lint (api_gateway) (push) Failing after 2m31s
Go Linter / Build golang services (api_gateway) (push) Has been skipped
Go Linter / Tag Commit (push) Has been skipped
Go Linter / Push Docker Images (api_gateway) (push) Has been skipped
71
2025-09-17 14:32:06 +03:00

15 lines
557 B
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package swagger
// ErrorResponse представляет стандартный ответ об ошибке
type ErrorResponse struct {
Error string `json:"error" example:"Bad Request"`
Message string `json:"message" example:"Invalid request parameters"`
Code int `json:"code" example:"400"`
}
// SuccessResponse представляет стандартный ответ об успехе
type SuccessResponse struct {
Message string `json:"message" example:"Operation completed successfully"`
Code int `json:"code" example:"200"`
}