task.py 413 Bytes
Newer Older
崔为之's avatar
崔为之 committed
1 2 3 4 5 6 7 8 9 10 11 12 13
#!/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:16
# @File        : task.py
# @Description :
"""


崔为之's avatar
崔为之 committed
14
from flask import current_app
崔为之's avatar
崔为之 committed
15 16


崔为之's avatar
崔为之 committed
17 18 19 20 21
@current_app.celery.task
def update_database():
    # Add your database operations here
    print(123312312)
    pass