mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-10 13:32:17 +03:00
25 lines
655 B
Python
25 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
|