This repository has been archived on 2023-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
MirrorTea/mirrortea
2023-01-08 00:11:46 +04:00

11 lines
185 B
Python
Executable file

#!/usr/bin/env python3
import asyncio
from nio import AsyncClient
async def main():
print(123)
if __name__ == '__main__':
asyncio.get_event_loop().run_until_complete(main())