12 lines
336 B
Python
12 lines
336 B
Python
|
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)
|