Refactor code layout
[pti/o2.git] / o2ims / adapter / notifications.py
diff --git a/o2ims/adapter/notifications.py b/o2ims/adapter/notifications.py
deleted file mode 100644 (file)
index 4c49c1b..0000000
+++ /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