X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=o2ims%2Fadapter%2Fnotifications.py;fp=o2ims%2Fadapter%2Fnotifications.py;h=0000000000000000000000000000000000000000;hb=84867b76a65efc4e9add52c86eae7e451c4a038d;hp=4c49c1b7aa7ac4767f499590fc05bd7f905b014d;hpb=19ee63847f8eb032009e63634b90eb594f3c0408;p=pti%2Fo2.git diff --git a/o2ims/adapter/notifications.py b/o2ims/adapter/notifications.py deleted file mode 100644 index 4c49c1b..0000000 --- a/o2ims/adapter/notifications.py +++ /dev/null @@ -1,20 +0,0 @@ -# pylint: disable=too-few-public-methods -import abc -from o2ims import config - - -SMO_O2_ENDPOINT = config.get_smo_o2endpoint() - - -class AbstractNotifications(abc.ABC): - @abc.abstractmethod - def send(self, message): - raise NotImplementedError - - -class SmoO2Notifications(AbstractNotifications): - def __init__(self, smoO2Endpoint=SMO_O2_ENDPOINT): - self.smoO2Endpoint = smoO2Endpoint - - def send(self, message): - pass