generated from geekiot/python-template
11 lines
212 B
Python
11 lines
212 B
Python
__all__ = ["start_bot"]
|
|
|
|
|
|
from redis.asyncio.client import Redis
|
|
from sqlalchemy.ext.asyncio import AsyncSession
|
|
|
|
|
|
async def start_bot(
|
|
redis_client: Redis,
|
|
database_session: AsyncSession,
|
|
) -> None: ...
|