mirror of
https://github.com/ION606/static-site-hosting.git
synced 2026-05-14 22:16:54 +00:00
17 lines
342 B
Python
17 lines
342 B
Python
|
|
# app/scheduler.py
|
||
|
|
from flask_apscheduler import APScheduler
|
||
|
|
from .helpers import delete_inactive_sites
|
||
|
|
|
||
|
|
scheduler = APScheduler()
|
||
|
|
|
||
|
|
|
||
|
|
def init_scheduler(app):
|
||
|
|
scheduler.init_app(app)
|
||
|
|
scheduler.start()
|
||
|
|
scheduler.add_job(
|
||
|
|
id="delete_job",
|
||
|
|
func=delete_inactive_sites,
|
||
|
|
trigger="interval",
|
||
|
|
days=1,
|
||
|
|
)
|