6 lines
181 B
Python
6 lines
181 B
Python
# noinspection PyUnresolvedReferences,PyProtectedMember
|
|
from redis import asyncio as aioredis
|
|
|
|
from pssecret.settings import settings
|
|
|
|
redis = aioredis.from_url(settings.redis.url)
|