mirror of
https://github.com/WhaleFell/SMSBoom.git
synced 2026-02-07 20:34:23 +08:00
9 lines
198 B
Python
9 lines
198 B
Python
from .celery import app
|
|
from .celery import logger
|
|
import time
|
|
|
|
@app.task
|
|
def test(x, y):
|
|
logger.info("开始执行 test() 方法")
|
|
time.sleep(5)
|
|
logger.info("test() 方法执行成功") |