gitextract_g0z6iav5/ ├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── codeql.yml │ ├── dependabot.yml │ ├── docker.yml │ ├── go.yml │ ├── golangci-lint.yml │ └── release.yml ├── .gitignore ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── cmd/ │ └── serve/ │ └── main.go ├── compose.yml ├── examples/ │ └── basic/ │ └── main.go ├── fixtures/ │ ├── cert.pem │ └── key.pem ├── go.mod ├── go.sum ├── internal/ │ ├── commands/ │ │ ├── server.go │ │ ├── server_test.go │ │ ├── version.go │ │ └── version_test.go │ ├── config/ │ │ ├── flags.go │ │ └── flags_test.go │ └── middleware/ │ ├── auth.go │ ├── auth_test.go │ ├── cors.go │ ├── cors_test.go │ ├── logger.go │ ├── logger_test.go │ ├── recover.go │ ├── recover_test.go │ └── statuswriter.go ├── mock/ │ └── http.go ├── serve.go ├── serve_test.go └── static/ └── index.html