linspector/linspector/core/notification.py

14 lines
395 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.core.helpers import log
class Notification:
def __init__(self, configuration, environment):
super().__init__()
self.__configuration = configuration
self._environment = environment