mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-04-27 19:17:01 +00:00
11 lines
146 B
Python
11 lines
146 B
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
|
|
from celery import shared_task
|
|
|
|
|
|
# Todo: 定期清理上报history
|
|
@shared_task
|
|
def clean_terminal_history():
|
|
pass
|