mirror of
https://gitee.com/dify_ai/dify.git
synced 2024-12-04 04:07:47 +08:00
10 lines
254 B
Python
10 lines
254 B
Python
from flask import Blueprint
|
|
|
|
from libs.external_api import ExternalApi
|
|
|
|
bp = Blueprint('web', __name__, url_prefix='/api')
|
|
api = ExternalApi(bp)
|
|
|
|
|
|
from . import app, audio, completion, conversation, file, message, passport, saved_message, site, workflow
|