Get the MRE api working #1

Merged
chris merged 50 commits from add_mre_api into main 2025-04-06 23:58:50 +00:00
Showing only changes of commit c9dcad9ada - Show all commits

View File

@ -33,7 +33,7 @@ def create_app(app_name: str='MRE') -> Flask:
app = init_logger(app)
app.register_blueprint(mre_blueprint)
app.register_blueprint(api_blueprint)
app.register_blueprint(api_blueprint, url_prefix='/api')
@app.before_request
def before_request():