MaxKB/apps/common/job/__init__.py
2025-07-15 18:35:00 +08:00

19 lines
363 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# coding=utf-8
"""
@project: maxkb
@Author
@file __init__.py
@date2024/3/14 11:54
@desc:
"""
from .clean_chat_job import *
from .clean_debug_file_job import *
from .client_access_num_job import *
def run():
# client_access_num_job.run()
clean_chat_job.run()
clean_debug_file_job.run()
client_access_num_job.run()