mirror of
https://github.com/WhaleFell/SMSBoom.git
synced 2026-02-03 18:33:21 +08:00
8 lines
137 B
Python
8 lines
137 B
Python
from celery_server.tasks import asyncRun
|
|
|
|
# r = test.delay(1,2)
|
|
# r2 = test.delay(1,2)
|
|
|
|
r = asyncRun.delay("13809213237")
|
|
print(r.get())
|