Backup commit. Many internally changes. Known issues still need to be fixed.

This commit is contained in:
Johannes Findeisen 2022-09-30 05:43:35 +02:00
commit ee423c01bb
22 changed files with 122 additions and 85 deletions

View file

@ -7,16 +7,17 @@ from linspector.core.helpers import log
from linspector.core.service import Service
def create(configuration, environment):
return ShellService(configuration, environment)
def create(configuration, environment, **kwargs):
return ShellService(configuration, environment, **kwargs)
class ShellService(Service):
def __init__(self, configuration, environment):
super().__init__(configuration, environment)
def __init__(self, configuration, environment, **kwargs):
super().__init__(configuration, environment, **kwargs)
self.__configuration = configuration
self.__environment = environment
self.__kwargs = kwargs
def execute(self):
return