Skip to content

Commit

Permalink
Add wrapper for ASF IPC
Browse files Browse the repository at this point in the history
  • Loading branch information
woctezuma committed Jun 15, 2022
1 parent 0df1de1 commit c08e1b1
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/demo_utils.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import asyncio

from src.asf_utils import add_and_play


def play_demos(appids):
loop = asyncio.get_event_loop()
output = loop.run_until_complete(add_and_play(appids))
loop.close()

return output

0 comments on commit c08e1b1

Please sign in to comment.