2022-09-25 00:39:51 +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.
|
2023-02-23 10:26:44 +01:00
|
|
|
See LICENSE (MIT license).
|
2022-09-25 00:39:51 +02:00
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
2022-09-28 02:04:50 +02:00
|
|
|
# This class can maybe be used for a general data model for Linspector data processing. currently
|
|
|
|
|
# the is no use for it and no place known where it could be used with sense.
|
2022-09-25 00:39:51 +02:00
|
|
|
class Model:
|
|
|
|
|
|
2022-10-11 02:57:13 +02:00
|
|
|
def __init__(self, configuration, environment, log):
|
2022-09-25 00:39:51 +02:00
|
|
|
self.__configuration = configuration
|
2022-10-11 02:57:13 +02:00
|
|
|
self.__environment = environment
|
|
|
|
|
self.__log = log
|