Add DynamoDB backend

This commit is contained in:
Jimmy
2021-09-29 16:14:28 +02:00
parent 8a8eb395ec
commit d67797a1d5
4 changed files with 372 additions and 4 deletions

View File

@@ -21,6 +21,7 @@ uvicorn = "*"
aioredis = {version = "^2.0", optional = true}
aiomcache = {version = "*", optional = true}
pendulum = "*"
aiobotocore = {version = "^1.4.1", optional = true}
[tool.poetry.dev-dependencies]
flake8 = "*"
@@ -36,4 +37,5 @@ build-backend = "poetry.masonry.api"
[tool.poetry.extras]
redis = ["aioredis"]
memcache = ["aiomcache"]
dynamodb = ["aiobotocore"]
all = ["aioredis","aiomcache"]