gitextract_g5woqams/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug-report.yaml │ │ ├── config.yml │ │ └── feature-request.yaml │ ├── PULL_REQUEST_TEMPLATE.md │ ├── dependabot.yml │ └── workflows/ │ ├── codeql.yml │ ├── gin.yml │ ├── goreleaser.yml │ └── trivy-scan.yml ├── .gitignore ├── .golangci.yml ├── .goreleaser.yaml ├── BENCHMARKS.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── auth.go ├── auth_test.go ├── benchmarks_test.go ├── binding/ │ ├── binding.go │ ├── binding_msgpack_test.go │ ├── binding_nomsgpack.go │ ├── binding_test.go │ ├── bson.go │ ├── default_validator.go │ ├── default_validator_benchmark_test.go │ ├── default_validator_test.go │ ├── form.go │ ├── form_mapping.go │ ├── form_mapping_benchmark_test.go │ ├── form_mapping_test.go │ ├── header.go │ ├── json.go │ ├── json_test.go │ ├── msgpack.go │ ├── msgpack_test.go │ ├── multipart_form_mapping.go │ ├── multipart_form_mapping_test.go │ ├── plain.go │ ├── protobuf.go │ ├── query.go │ ├── toml.go │ ├── toml_test.go │ ├── uri.go │ ├── validate_test.go │ ├── xml.go │ ├── xml_test.go │ ├── yaml.go │ └── yaml_test.go ├── codec/ │ └── json/ │ ├── api.go │ ├── go_json.go │ ├── json.go │ ├── jsoniter.go │ └── sonic.go ├── codecov.yml ├── context.go ├── context_appengine.go ├── context_file_test.go ├── context_test.go ├── debug.go ├── debug_test.go ├── deprecated.go ├── deprecated_test.go ├── doc.go ├── docs/ │ └── doc.md ├── errors.go ├── errors_test.go ├── examples/ │ └── README.md ├── fs.go ├── fs_test.go ├── gin.go ├── ginS/ │ ├── README.md │ ├── gins.go │ └── gins_test.go ├── gin_integration_test.go ├── gin_test.go ├── githubapi_test.go ├── go.mod ├── go.sum ├── internal/ │ ├── bytesconv/ │ │ ├── bytesconv.go │ │ └── bytesconv_test.go │ └── fs/ │ ├── fs.go │ └── fs_test.go ├── logger.go ├── logger_test.go ├── middleware_test.go ├── mode.go ├── mode_test.go ├── path.go ├── path_test.go ├── recovery.go ├── recovery_test.go ├── render/ │ ├── bson.go │ ├── data.go │ ├── html.go │ ├── json.go │ ├── msgpack.go │ ├── pdf.go │ ├── protobuf.go │ ├── reader.go │ ├── reader_test.go │ ├── redirect.go │ ├── render.go │ ├── render_msgpack_test.go │ ├── render_test.go │ ├── text.go │ ├── toml.go │ ├── xml.go │ └── yaml.go ├── response_writer.go ├── response_writer_test.go ├── routergroup.go ├── routergroup_test.go ├── routes_test.go ├── test_helpers.go ├── testdata/ │ ├── certificate/ │ │ ├── cert.pem │ │ └── key.pem │ ├── protoexample/ │ │ ├── test.pb.go │ │ └── test.proto │ ├── template/ │ │ ├── hello.tmpl │ │ └── raw.tmpl │ └── test_file.txt ├── tree.go ├── tree_test.go ├── utils.go ├── utils_test.go └── version.go