diff --git a/README.md b/README.md index 34565545..e73fefd3 100644 --- a/README.md +++ b/README.md @@ -62,6 +62,7 @@ if __name__ == "__main__": * [Custom Protocol](docs/custom_protocol.md) * [Testing](docs/testing.md) * [Deploying](docs/deploying.md) + * [Extensions](docs/extensions.md) * [Contributing](docs/contributing.md) * [License](LICENSE) diff --git a/docs/extensions.md b/docs/extensions.md new file mode 100644 index 00000000..dbd379b8 --- /dev/null +++ b/docs/extensions.md @@ -0,0 +1,6 @@ +# Sanic Extensions + +A list of Sanic extensions created by the community. + + * [Sessions](https://github.com/subyraman/sanic_session) -- Support for sessions. Allows using redis, memcache or an in memory store. + * [CORS](https://github.com/ashleysommer/sanic-cors) -- A port of flask-cors.