linspector/linspector/notification.py

13 lines
374 B
Python

"""
This file is part of Linspector (https://linspector.org/)
Copyright (c) 2013-2023 Johannes Findeisen <you@hanez.org>. All Rights Reserved.
See LICENSE.
"""
class Notification:
def __init__(self, configuration, environment, log):
super().__init__()
self._configuration = configuration
self._environment = environment
self._log = log