2023-05-15 08:51:32 +08:00
|
|
|
# -*- coding:utf-8 -*-
|
|
|
|
from flask import Blueprint
|
|
|
|
from libs.external_api import ExternalApi
|
|
|
|
|
|
|
|
bp = Blueprint('web', __name__, url_prefix='/api')
|
|
|
|
api = ExternalApi(bp)
|
|
|
|
|
|
|
|
|
2024-04-08 18:51:46 +08:00
|
|
|
from . import app, audio, completion, conversation, file, message, passport, saved_message, site, workflow
|