選択できるのは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