13 lines
221 B
Python
13 lines
221 B
Python
import asyncio
|
|
|
|
from src.bootstrap.app_factory import create_app
|
|
|
|
|
|
async def main() -> None:
|
|
bot, dispatcher = create_app()
|
|
await dispatcher.start_polling(bot)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
asyncio.run(main())
|