feat: add endpoints to __init__.py

This commit is contained in:
Stream 2025-09-23 18:35:11 +08:00
parent b7b5b0b8d0
commit 75c221038d
No known key found for this signature in database
GPG Key ID: 033728094B100D70
2 changed files with 4 additions and 0 deletions

View File

@ -19,6 +19,7 @@ from .app import (
annotation,
app,
audio,
chatflow_memory,
completion,
conversation,
file,
@ -40,6 +41,7 @@ __all__ = [
"annotation",
"app",
"audio",
"chatflow_memory",
"completion",
"conversation",
"dataset",

View File

@ -18,6 +18,7 @@ web_ns = Namespace("web", description="Web application API operations", path="/"
from . import (
app,
audio,
chatflow_memory,
completion,
conversation,
feature,
@ -39,6 +40,7 @@ __all__ = [
"app",
"audio",
"bp",
"chatflow_memory",
"completion",
"conversation",
"feature",