dify/api/controllers/inner_api/__init__.py

10 lines
218 B
Python
Raw Normal View History

2024-04-18 17:33:32 +08:00
from flask import Blueprint
2024-04-18 17:33:32 +08:00
from libs.external_api import ExternalApi
bp = Blueprint("inner_api", __name__, url_prefix="/inner/api")
2024-04-18 17:33:32 +08:00
api = ExternalApi(bp)
2024-07-08 22:37:20 +08:00
from .plugin import plugin
2024-04-18 17:33:32 +08:00
from .workspace import workspace