MaxKB/apps/common/job/__init__.py
CaptainB 832d2a2e7f
Some checks are pending
sync2gitee / repo-sync (push) Waiting to run
Typos Check / Spell Check with Typos (push) Waiting to run
refactor: 处理历史会话中图片的问题
2024-11-14 21:44:31 +08:00

18 lines
329 B
Python
Raw Permalink 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 .client_access_num_job import *
from .clean_chat_job import *
from .clean_debug_file_job import *
def run():
client_access_num_job.run()
clean_chat_job.run()
clean_debug_file_job.run()