jumpserver/apps/authentication/tasks.py
2019-02-27 08:45:00 +08:00

12 lines
190 B
Python

# -*- coding: utf-8 -*-
#
from celery import shared_task
from .utils import write_login_log
@shared_task
def write_login_log_async(*args, **kwargs):
write_login_log(*args, **kwargs)