13 lines
269 B
Python
13 lines
269 B
Python
from flask_restx import Api
|
|
from flask import Blueprint
|
|
from .MRE.api import namespace as mre_namespace
|
|
|
|
blueprint = Blueprint('api', __name__)
|
|
api = Api(
|
|
blueprint,
|
|
doc='/doc/',
|
|
title='Quarter API documentatoin'
|
|
)
|
|
api.add_namespace(mre_namespace, '/mre')
|
|
|