MRE/api.py

13 lines
269 B
Python
Raw Normal View History

2025-04-06 22:05:40 +00:00
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')