mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-14 08:32:17 +03:00
28 lines
591 B
Python
28 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
|
|
|