This repository has been archived on 2022-10-17. You can view files and clone it, but cannot push or open issues or pull requests.
tg-bot-sample/main.py

13 lines
192 B
Python
Raw Permalink Normal View History

2022-09-09 08:22:27 +00:00
#!/usr/bin/python
from aiogram import executor
import asyncio
async def main():
"""TODO: Create and configure bot, connect to db"""
2022-09-09 08:22:27 +00:00
if __name__ == '__main__':
asyncio.run(main())