Add skeleton asyncio launcher
This commit is contained in:
parent
5d2b56b015
commit
f95dc7f3e4
13
grzegorz/__init__.py
Normal file
13
grzegorz/__init__.py
Normal file
@ -0,0 +1,13 @@
|
||||
import asyncio
|
||||
|
||||
async def entry():
|
||||
await asyncio.wait([
|
||||
])
|
||||
|
||||
def main():
|
||||
asyncio.get_event_loop().run_until_complete(
|
||||
entry()
|
||||
)
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
Loading…
Reference in New Issue
Block a user