mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-10-22 08:19:04 +00:00
12 lines
190 B
Python
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)
|
|
|