Merge pull request #40 from jimtheyounger/feature/add-dynamodb-backend

Add dynamodb backend support
This commit is contained in:
long2ice
2021-10-29 10:45:28 +08:00
committed by GitHub
5 changed files with 385 additions and 6 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,6 +37,7 @@ build-backend = "poetry.masonry.api"
[tool.poetry.extras]
redis = ["aioredis"]
memcache = ["aiomcache"]
dynamodb = ["aiobotocore"]
all = ["aioredis","aiomcache"]
[tool.black]