aboutsummaryrefslogtreecommitdiffstats
path: root/project/basecommunicator.py
diff options
context:
space:
mode:
authorjantuomi <jans.tuomi@gmail.com>2016-07-19 14:50:22 +0300
committerjantuomi <jans.tuomi@gmail.com>2016-07-19 14:50:22 +0300
commit9d94a01b631676b54f680c2571ae4dbba9ccd037 (patch)
tree2cac58eba2cd5d29ae0c2192efc5ca365dde7f74 /project/basecommunicator.py
parent080cfd6cfe946e243239af201dea8466abaee020 (diff)
Restructure project
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):
+ ...