MRE/app/api.py
2025-04-06 16:19:05 -06:00

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')