mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-06-01 19:35:23 +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)
|