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

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()