Tons of refactoring and implemented basic task execution. There are lot of bugs and features not working anymore. DO NOT USE!. (0.22.0)

This commit is contained in:
Johannes Findeisen 2023-08-20 22:51:39 +02:00
commit 681475f274
31 changed files with 278 additions and 259 deletions

View file

@ -14,6 +14,6 @@ def create(configuration, environment, log):
class SplunkTask(Task):
def __init__(self, configuration, environment, log):
super().__init__(configuration, environment, log)
self.__configuration = configuration
self.__environment = environment
self.__log = log
self._configuration = configuration
self._environment = environment
self._log = log