10 lines
301 B
Python
10 lines
301 B
Python
"""Authorization app celery tasks."""
|
|
import logging
|
|
from django.utils.translation import gettext_lazy as _
|
|
from celery import shared_task
|
|
|
|
from account import models as account_models
|
|
|
|
logging.basicConfig(format='[%(levelname)s] %(message)s', level=logging.INFO)
|
|
logger = logging.getLogger(__name__)
|