mirror of
https://github.com/zhaarey/AppleMusicDecrypt.git
synced 2025-10-23 15:11:06 +00:00
12 lines
260 B
Python
12 lines
260 B
Python
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() |