mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-27 06:22:18 +03:00
29 lines
591 B
Python
29 lines
591 B
Python
|
#!/usr/bin/python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
# Author: İsmail BAŞARAN <ismail.basaran@tubitak.gov.tr> <basaran.ismaill@gmail.com>
|
||
|
|
||
|
from base.scheduler.BaseScheduler import BaseScheduler
|
||
|
|
||
|
class APSchedulerImpl(BaseScheduler):
|
||
|
|
||
|
def initialize(self):
|
||
|
# Not implemented yet
|
||
|
pass
|
||
|
|
||
|
def add_job(self):
|
||
|
# Not implemented yet
|
||
|
pass
|
||
|
|
||
|
def add_job_by_hour(self):
|
||
|
# Not implemented yet
|
||
|
pass
|
||
|
|
||
|
def add_job_by_mount(self):
|
||
|
# Not implemented yet
|
||
|
pass
|
||
|
|
||
|
def add_job_by_minute(self):
|
||
|
# Not implemented yet
|
||
|
pass
|
||
|
|