#!/usr/bin/python3 # -*- coding: utf-8 -*- # Author: İsmail BAŞARAN <ismail.basaran@tubitak.gov.tr> <basaran.ismaill@gmail.com> class BaseScheduler(object): def initialize(self): # Implement this from your implementation class pass def add_job(self): # Implement this from your implementation class pass def add_job_by_hour(self): # Implement this from your implementation class pass def add_job_by_mount(self): # Implement this from your implementation class pass def add_job_by_minute(self): # Implement this from your implementation class pass