diff options
| author | jantuomi <jans.tuomi@gmail.com> | 2016-07-19 14:20:36 +0300 |
|---|---|---|
| committer | jantuomi <jans.tuomi@gmail.com> | 2016-07-19 14:20:36 +0300 |
| commit | 50779b5ecc55f906bcfd46e54dad70b2c74d3a98 (patch) | |
| tree | c3627888448c9e49f32df8670596758f347427b4 /basecommunicator.py | |
| parent | eacb313e19805fd8d4bbba1b3515aa9adcd897cf (diff) | |
Code cleanup
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): + ... |
