2022-09-25 06:47:10 +02:00
|
|
|
"""
|
|
|
|
|
This file is part of Linspector (https://linspector.org/)
|
2022-09-27 06:07:55 +02:00
|
|
|
Copyright (c) 2022 Johannes Findeisen <you@hanez.org>. All Rights Reserved.
|
2022-09-28 08:27:51 +02:00
|
|
|
See LICENSE (MIT license)
|
2022-09-25 06:47:10 +02:00
|
|
|
"""
|
2022-09-30 02:14:36 +02:00
|
|
|
from linspector.core.helpers import log
|
2022-09-25 06:47:10 +02:00
|
|
|
|
|
|
|
|
|
2022-09-28 02:04:50 +02:00
|
|
|
class Service:
|
2022-09-25 06:47:10 +02:00
|
|
|
|
2022-09-30 05:43:35 +02:00
|
|
|
def __init__(self, configuration, environment, **kwargs):
|
2022-09-25 06:47:10 +02:00
|
|
|
self.__configuration = configuration
|
2022-09-28 02:04:50 +02:00
|
|
|
self._environment = environment
|
2022-09-30 05:43:35 +02:00
|
|
|
self.__kwargs = kwargs
|