19 lines
592 B
Python
19 lines
592 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
|
|
from linspector.core.notification import Notification
|
|
|
|
|
|
def create(configuration, environment):
|
|
return CallNotification(configuration, environment)
|
|
|
|
|
|
class CallNotification(Notification):
|
|
|
|
def __init__(self, configuration, environment):
|
|
super().__init__(configuration, environment)
|
|
self.__configuration = configuration
|
|
self.__environment = environment
|