WIP: Start implementation of the build manager/controller. This code is not yet working completely.
This commit is contained in:
parent
2ccbea95a5
commit
eacf3f01d2
9 changed files with 576 additions and 0 deletions
11
buildman/basecomponent.py
Normal file
11
buildman/basecomponent.py
Normal file
|
@ -0,0 +1,11 @@
|
|||
from autobahn.asyncio.wamp import ApplicationSession
|
||||
|
||||
class BaseComponent(ApplicationSession):
|
||||
""" Base class for all registered component sessions in the server. """
|
||||
server = None
|
||||
parent_manager = None
|
||||
build_logs = None
|
||||
user_files = None
|
||||
|
||||
def __init__(self, config, **kwargs):
|
||||
ApplicationSession.__init__(self, config)
|
Reference in a new issue