X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=o2app%2Fentrypoints%2Fflask_application.py;h=f9d5f85b3b76b39f8d7144b6e1b1c845c5d04d54;hb=0daf5c4f160ec3fde4eb849fbd59ff75eff8e76c;hp=65dab573a745ad7322751e64d1f87146fad4f447;hpb=84867b76a65efc4e9add52c86eae7e451c4a038d;p=pti%2Fo2.git diff --git a/o2app/entrypoints/flask_application.py b/o2app/entrypoints/flask_application.py index 65dab57..f9d5f85 100644 --- a/o2app/entrypoints/flask_application.py +++ b/o2app/entrypoints/flask_application.py @@ -17,7 +17,7 @@ from flask_restx import Api from o2app import bootstrap from o2ims.views import ocloud_route as ims_route -from o2dms.views import dms_route +from o2dms.api import configure_namespace as dms_route_configure_namespace # apibase = config.get_o2ims_api_base() @@ -31,4 +31,4 @@ api = Api(app, version='1.0.0', bus = bootstrap.bootstrap() ims_route.configure_namespace(api, bus) -dms_route.configure_namespace(api, bus) +dms_route_configure_namespace(api)