mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-06-04 11:14:10 +08:00
21 lines
584 B
Python
21 lines
584 B
Python
from flask import Blueprint
|
|
|
|
from libs.external_api import ExternalApi
|
|
|
|
bp = Blueprint('console', __name__, url_prefix='/console/api')
|
|
api = ExternalApi(bp)
|
|
|
|
# Import app controllers
|
|
from .app import app, site, explore, completion, model_config, statistic, conversation, message
|
|
|
|
# Import auth controllers
|
|
from .auth import login, oauth
|
|
|
|
# Import datasets controllers
|
|
from .datasets import datasets, datasets_document, datasets_segments, file, hit_testing
|
|
|
|
# Import other controllers
|
|
from . import setup, version, apikey
|
|
|
|
from .workspace import workspace, members, providers, account
|