mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-23 18:13:56 +03:00
f0d9eda566
* Update aioredis to 2.0.1 * Rearranged aioredis.from_url parameters
13 lines
275 B
Python
13 lines
275 B
Python
"""Services module."""
|
|
|
|
from aioredis import Redis
|
|
|
|
|
|
class Service:
|
|
def __init__(self, redis: Redis) -> None:
|
|
self._redis = redis
|
|
|
|
async def process(self) -> str:
|
|
await self._redis.set("my-key", "value")
|
|
return await self._redis.get("my-key")
|