mirror of
https://github.com/solero/houdini.git
synced 2025-10-13 02:48:35 +00:00
Rename all modules to comply with PEP8
Lowercase with underscores
This commit is contained in:
11
bootstrap.py
Normal file
11
bootstrap.py
Normal file
@@ -0,0 +1,11 @@
|
||||
import asyncio
|
||||
import sys
|
||||
from houdini.houdini import HoudiniFactory
|
||||
|
||||
if __name__ == '__main__':
|
||||
if sys.platform == 'win32':
|
||||
loop = asyncio.ProactorEventLoop()
|
||||
asyncio.set_event_loop(loop)
|
||||
|
||||
factory_instance = HoudiniFactory(server='Login')
|
||||
asyncio.run(factory_instance.start())
|
Reference in New Issue
Block a user