├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── dependabot.yaml └── workflows │ ├── auto-merge.yml │ └── go-test.yml ├── .gitignore ├── .golangci.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── api.go ├── api_test.go ├── auth.go ├── auth_test.go ├── doc.go ├── go.mod ├── go.sum ├── headers.go ├── middleware.go ├── middleware_test.go ├── parsing.go ├── parsing_test.go ├── schema.go └── schema_test.go /.gitattributes: -------------------------------------------------------------------------------- 1 | *.go text eol=lf -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-openapi/errors/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-openapi/errors/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-openapi/errors/HEAD/.github/workflows/auto-merge.yml -------------------------------------------------------------------------------- /.github/workflows/go-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-openapi/errors/HEAD/.github/workflows/go-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-openapi/errors/HEAD/.golangci.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-openapi/errors/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-openapi/errors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-openapi/errors/HEAD/README.md -------------------------------------------------------------------------------- /api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-openapi/errors/HEAD/api.go -------------------------------------------------------------------------------- /api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-openapi/errors/HEAD/api_test.go -------------------------------------------------------------------------------- /auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-openapi/errors/HEAD/auth.go -------------------------------------------------------------------------------- /auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-openapi/errors/HEAD/auth_test.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-openapi/errors/HEAD/doc.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-openapi/errors/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-openapi/errors/HEAD/go.sum -------------------------------------------------------------------------------- /headers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-openapi/errors/HEAD/headers.go -------------------------------------------------------------------------------- /middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-openapi/errors/HEAD/middleware.go -------------------------------------------------------------------------------- /middleware_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-openapi/errors/HEAD/middleware_test.go -------------------------------------------------------------------------------- /parsing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-openapi/errors/HEAD/parsing.go -------------------------------------------------------------------------------- /parsing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-openapi/errors/HEAD/parsing_test.go -------------------------------------------------------------------------------- /schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-openapi/errors/HEAD/schema.go -------------------------------------------------------------------------------- /schema_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-openapi/errors/HEAD/schema_test.go --------------------------------------------------------------------------------