WIP: Start implementation of the build manager/controller. This code is not yet working completely.

This commit is contained in:
Joseph Schorr 2014-11-11 18:23:15 -05:00
parent 2ccbea95a5
commit eacf3f01d2
9 changed files with 576 additions and 0 deletions

11
buildman/basecomponent.py Normal file
View 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)