mirror of
https://github.com/langgenius/dify.git
synced 2025-07-13 04:02:42 +00: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
|