7 lines
179 B
Python
7 lines
179 B
Python
|
# noinspection PyUnresolvedReferences,PyProtectedMember
|
||
|
from redis import asyncio as aioredis
|
||
|
|
||
|
from rectes.settings import settings
|
||
|
|
||
|
redis = aioredis.from_url(settings.redis.url)
|