social-scheduler/social_scheduler/workers/worker.py

6 lines
255 B
Python

class Worker(object):
def post_single(self, caption, image):
raise NotImplementedError('post_single has to be implemented')
def post_multiple(self, message, images):
raise NotImplementedError('post_multiple has to be implemented')