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

14 lines
209 B
Plaintext
Raw Normal View History

2023-01-07 20:11:46 +00:00
#!/usr/bin/env python3
import asyncio
from nio import AsyncClient
2023-01-07 21:05:21 +00:00
def main():
asyncio.get_event_loop().run_until_complete(loop())
async def loop():
2023-01-07 20:11:46 +00:00
print(123)
if __name__ == '__main__':
2023-01-07 21:05:21 +00:00
main()