File size: 272 Bytes
4304c6d
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
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, feature, file, message, passport, saved_message, site, workflow