21 lines
620 B
Python
21 lines
620 B
Python
"""
|
|
This file is part of Linspector (https://linspector.org/)
|
|
Copyright (c) 2022 Johannes Findeisen <you@hanez.org>. All Rights Reserved.
|
|
See LICENSE (MIT license).
|
|
"""
|
|
from linspector.service import Service
|
|
|
|
|
|
def create(configuration, environment, log):
|
|
return RandomService(configuration, environment, log)
|
|
|
|
|
|
class RandomService(Service):
|
|
def __init__(self, configuration, environment, log):
|
|
super().__init__(configuration, environment, log)
|
|
self.__configuration = configuration
|
|
self.__environment = environment
|
|
self.__log = log
|
|
|
|
def execute(self, **kwargs):
|
|
return
|