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
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 9a53e2529a - Show all commits

2
.gitmodules vendored
View File

@ -1,3 +1,3 @@
[submodule "mre"]
path = mre
path = app/mre_module
url = http://10.0.50.3:3002/Quarter/MRE-module.git

View File

@ -1,7 +1,7 @@
from flask import current_app
from flask_restx import Api, fields, apidoc, Model, Namespace, Resource
from flask_restx.reqparse import RequestParser
from MRE_module import compute_mre
from mre import compute_mre
from . import namespace
MRE_request_parser = RequestParser()