mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 10:12:51 +00:00
15 lines
307 B
Python
15 lines
307 B
Python
# coding=utf-8
|
||
"""
|
||
@project: maxkb
|
||
@Author:虎
|
||
@file: __init__.py
|
||
@date:2023/11/10 10:43
|
||
@desc:
|
||
"""
|
||
from .listener_manage import *
|
||
|
||
|
||
def run():
|
||
listener_manage.ListenerManagement().run()
|
||
QuerySet(Document).filter(status=Status.embedding).update(**{'status': Status.error})
|