您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

__init__.py 263B

123456789
  1. from flask import Blueprint
  2. from libs.external_api import ExternalApi
  3. bp = Blueprint("web", __name__, url_prefix="/api")
  4. api = ExternalApi(bp)
  5. from . import app, audio, completion, conversation, feature, file, message, passport, saved_message, site, workflow