mirror of
https://github.com/babysor/MockingBird.git
synced 2024-03-22 13:11:31 +08:00
16 lines
358 B
Python
16 lines
358 B
Python
from flask import Blueprint
|
|
from flask_restx import Api
|
|
from .audio import api as audio
|
|
from .synthesizer import api as synthesizer
|
|
|
|
api_blueprint = Blueprint('api', __name__, url_prefix='/api')
|
|
|
|
api = Api(
|
|
app=api_blueprint,
|
|
title='Mocking Bird',
|
|
version='1.0',
|
|
description='My API'
|
|
)
|
|
|
|
api.add_namespace(audio)
|
|
api.add_namespace(synthesizer) |