11 lines
165 B
Python
11 lines
165 B
Python
from celery import shared_task
|
|
|
|
|
|
@shared_task
|
|
def send_email(user_pk):
|
|
print(user_pk)
|
|
|
|
# if sended
|
|
# zmienna info itp, jesli sie straci
|
|
|
|
return None |