mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-06-03 12:19:34 +00:00
11 lines
211 B
Python
11 lines
211 B
Python
#!/usr/bin/env 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) |