mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 01:05:42 +00:00
10 lines
260 B
Python
10 lines
260 B
Python
from app.daemon import daemon
|
|
|
|
|
|
def register(app, scheduler):
|
|
if app.config['NOPAQUE_IS_PRIMARY_INSTANCE']:
|
|
@scheduler.task('interval', id='daemon', seconds=3)
|
|
def daemon_task():
|
|
with app.app_context():
|
|
daemon()
|