Backup commit. Many internally changes. Known issues still need to be fixed.
This commit is contained in:
parent
8808b657c4
commit
ee423c01bb
22 changed files with 122 additions and 85 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue