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