16 lines
230 B
Python
Executable file
16 lines
230 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
import asyncio
|
|
|
|
import aiogram as telegram
|
|
import nio as matrix
|
|
|
|
def main():
|
|
asyncio.get_event_loop().run_until_complete(loop())
|
|
|
|
async def loop():
|
|
print(123)
|
|
|
|
if __name__ == '__main__':
|
|
main()
|