added own scheduler class for extending apscheduler
This commit is contained in:
parent
1a6e9a89d1
commit
4219e8e109
2 changed files with 9 additions and 1 deletions
7
lib/core/scheduler.py
Normal file
7
lib/core/scheduler.py
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
|
||||
from apscheduler.scheduler import Scheduler
|
||||
|
||||
|
||||
class Scheduler(Scheduler):
|
||||
def test(self):
|
||||
pass
|
||||
|
|
@ -8,9 +8,10 @@ import logging
|
|||
import logging.handlers
|
||||
import os
|
||||
import os.path as path
|
||||
from apscheduler.scheduler import Scheduler
|
||||
|
||||
from lib.config.parser import FullConfigParser
|
||||
from lib.core.job import Job
|
||||
from lib.core.scheduler import Scheduler
|
||||
from lib.backends.https import HttpsBackend
|
||||
from lib.frontends.lish import LishFrontend
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue