mirror of
https://github.com/babysor/MockingBird.git
synced 2024-03-22 13:11:31 +08:00
15 lines
284 B
Python
15 lines
284 B
Python
|
from flask import Blueprint
|
||
|
from flask_restx import Api
|
||
|
from .audio import api as audio
|
||
|
|
||
|
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)
|