Files
AppleMusicDecrypt/main.py

12 lines
260 B
Python
Raw Normal View History

2024-05-04 15:58:59 +08:00
import asyncio
from src.cmd import NewInteractiveShell
if __name__ == '__main__':
loop = asyncio.get_event_loop()
cmd = NewInteractiveShell(loop)
try:
loop.run_until_complete(cmd.start())
except KeyboardInterrupt:
loop.stop()