init_celery.py 408 Bytes
Newer Older
崔为之's avatar
崔为之 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
# @Version     : Python 3.11.4
# @Software    : Sublime Text 4
# @Author      : StudentCWZ
# @Email       : StudentCWZ@outlook.com
# @Date        : 2023/11/7 16:10
# @File        : init_celery.py
# @Description :
"""

from flask import Flask

崔为之's avatar
崔为之 committed
15
from application.libs import make_celery
崔为之's avatar
崔为之 committed
16 17


崔为之's avatar
崔为之 committed
18 19
def init_celery(app: Flask) -> None:
    app.celery = make_celery(app)