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.
|
2023-02-23 10:26:44 +01:00
|
|
|
See LICENSE (MIT license).
|
2022-09-25 06:47:10 +02:00
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
2022-09-28 02:04:50 +02:00
|
|
|
class Plugin:
|
2022-10-06 22:42:31 +02:00
|
|
|
def __init__(self, configuration, environment, linspector, log):
|
2022-09-25 06:47:10 +02:00
|
|
|
self.__configuration = configuration
|
2022-10-11 02:57:13 +02:00
|
|
|
self.__environment = environment
|
2022-09-28 02:04:50 +02:00
|
|
|
self.__linspector = linspector
|
2022-10-06 22:42:31 +02:00
|
|
|
self.__log = log
|