├── .github └── workflows │ ├── ghpages.yml │ ├── publish.yaml │ └── update.yaml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── Makefile ├── README.md ├── docker-compose.yml ├── draft-ietf-httpapi-ratelimit-headers.md ├── issues.html ├── issues.js └── test_ratelimit.py /.github/workflows/ghpages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ietf-wg-httpapi/ratelimit-headers/HEAD/.github/workflows/ghpages.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ietf-wg-httpapi/ratelimit-headers/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.github/workflows/update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ietf-wg-httpapi/ratelimit-headers/HEAD/.github/workflows/update.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ietf-wg-httpapi/ratelimit-headers/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ietf-wg-httpapi/ratelimit-headers/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ietf-wg-httpapi/ratelimit-headers/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ietf-wg-httpapi/ratelimit-headers/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ietf-wg-httpapi/ratelimit-headers/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /draft-ietf-httpapi-ratelimit-headers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ietf-wg-httpapi/ratelimit-headers/HEAD/draft-ietf-httpapi-ratelimit-headers.md -------------------------------------------------------------------------------- /issues.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ietf-wg-httpapi/ratelimit-headers/HEAD/issues.html -------------------------------------------------------------------------------- /issues.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ietf-wg-httpapi/ratelimit-headers/HEAD/issues.js -------------------------------------------------------------------------------- /test_ratelimit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ietf-wg-httpapi/ratelimit-headers/HEAD/test_ratelimit.py --------------------------------------------------------------------------------