jumpserver/apps/audits/tasks.py

13 lines
213 B
Python
Raw Normal View History

2016-11-10 15:54:21 +00:00
#!/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):
2016-11-11 01:48:47 +00:00
write_login_log(*args, **kwargs)