added own scheduler class for extending apscheduler
This commit is contained in:
parent
8467bbb74c
commit
9e21d5f87e
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 logging.handlers
|
||||||
import os
|
import os
|
||||||
import os.path as path
|
import os.path as path
|
||||||
from apscheduler.scheduler import Scheduler
|
|
||||||
from lib.config.parser import FullConfigParser
|
from lib.config.parser import FullConfigParser
|
||||||
from lib.core.job import Job
|
from lib.core.job import Job
|
||||||
|
from lib.core.scheduler import Scheduler
|
||||||
from lib.backends.https import HttpsBackend
|
from lib.backends.https import HttpsBackend
|
||||||
from lib.frontends.lish import LishFrontend
|
from lib.frontends.lish import LishFrontend
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue