mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-10 18:12:35 +03:00
26 lines
655 B
Python
26 lines
655 B
Python
|
#!/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
|