X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=o2app%2Fentrypoints%2Fflask_application.py;h=cb12fb4f10646a98c3abdefd9a03725f02a4a787;hb=refs%2Fheads%2Fe-release;hp=f9d5f85b3b76b39f8d7144b6e1b1c845c5d04d54;hpb=5ad82f634e2f10aaeccf1d2420fafc63e2d0056e;p=pti%2Fo2.git diff --git a/o2app/entrypoints/flask_application.py b/o2app/entrypoints/flask_application.py index f9d5f85..cb12fb4 100644 --- a/o2app/entrypoints/flask_application.py +++ b/o2app/entrypoints/flask_application.py @@ -16,7 +16,7 @@ from flask import Flask from flask_restx import Api from o2app import bootstrap -from o2ims.views import ocloud_route as ims_route +from o2ims.views import configure_namespace as ims_route_configure_namespace from o2dms.api import configure_namespace as dms_route_configure_namespace @@ -24,11 +24,11 @@ from o2dms.api import configure_namespace as dms_route_configure_namespace app = Flask(__name__) app.config.SWAGGER_UI_DOC_EXPANSION = 'list' api = Api(app, version='1.0.0', - title='O-Cloud O2 Services', + title='INF O2 Services', description='Swagger OpenAPI document for \ - O-Cloud O2 Services', + the INF O2 Services', ) bus = bootstrap.bootstrap() -ims_route.configure_namespace(api, bus) +ims_route_configure_namespace(api) dms_route_configure_namespace(api)