aboutsummaryrefslogtreecommitdiffstats
path: root/project/basecommunicator.py
diff options
context:
space:
mode:
Diffstat (limited to 'project/basecommunicator.py')
-rw-r--r--project/basecommunicator.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/project/basecommunicator.py b/project/basecommunicator.py
new file mode 100644
index 0000000..f4f8337
--- /dev/null
+++ b/project/basecommunicator.py
@@ -0,0 +1,10 @@
+class BaseCommunicator:
+ """Parent class for Telegram and shoutbox API communicators"""
+
+ @staticmethod
+ def fetch():
+ ...
+
+ @staticmethod
+ def send(data):
+ ...