12 lines
191 B
Python
12 lines
191 B
Python
#!/usr/bin/python
|
|
from aiogram import executor
|
|
import asyncio
|
|
|
|
|
|
async def main():
|
|
"""TODO: Create and configure bot, connect to db"""
|
|
|
|
|
|
if __name__ == '__main__':
|
|
asyncio.run(main())
|