Stage 01 - bootstrap v2 stable start

This commit is contained in:
2026-04-13 20:47:04 +03:00
commit 551b4bd690
51 changed files with 1190 additions and 0 deletions

12
app/src/main.py Normal file
View File

@@ -0,0 +1,12 @@
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())