bugfix
This commit is contained in:
parent
f6e11eaa7e
commit
312615cde9
15
appPublic/asynciorun.py
Executable file
15
appPublic/asynciorun.py
Executable file
@ -0,0 +1,15 @@
|
||||
import asyncio
|
||||
import ays
|
||||
from sqlor import DBPools
|
||||
from appPublic.jsonConfig import getConfig
|
||||
|
||||
def run(coro):
|
||||
p = '.'
|
||||
if len(sys.argv) > 1:
|
||||
p = sys.argv[1]
|
||||
config = getConfig(p, {'woridir':p})
|
||||
DBPools(config.databases)
|
||||
loop = asyncio.new_event_loop()
|
||||
asyncio.set_event_loop(loop)
|
||||
loop.run_until_complete(coro())
|
||||
|
Loading…
Reference in New Issue
Block a user