Convert file endlines to Unix (LF)
[pti/o2.git] / o2app / entrypoints / flask_application.py
index cde0715..55385c2 100644 (file)
@@ -1,33 +1,33 @@
-# Copyright (C) 2021 Wind River Systems, Inc.\r
-#\r
-#  Licensed under the Apache License, Version 2.0 (the "License");\r
-#  you may not use this file except in compliance with the License.\r
-#  You may obtain a copy of the License at\r
-#\r
-#      http://www.apache.org/licenses/LICENSE-2.0\r
-#\r
-#  Unless required by applicable law or agreed to in writing, software\r
-#  distributed under the License is distributed on an "AS IS" BASIS,\r
-#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
-#  See the License for the specific language governing permissions and\r
-#  limitations under the License.\r
-\r
-from flask import Flask\r
-from flask_restx import Api\r
-\r
-from o2app import bootstrap\r
-from o2ims.views import configure_namespace as ims_route_configure_namespace\r
-from o2dms.api import configure_namespace as dms_route_configure_namespace\r
-\r
-\r
-# apibase = config.get_o2ims_api_base()\r
-app = Flask(__name__)\r
-app.config.SWAGGER_UI_DOC_EXPANSION = 'list'\r
-api = Api(app, version='1.0.0',\r
-          title='INF O2 Services API',\r
-          description='Swagger OpenAPI document for the INF O2 Services',\r
-          )\r
-bus = bootstrap.bootstrap()\r
-\r
-ims_route_configure_namespace(api)\r
-dms_route_configure_namespace(api)\r
+# Copyright (C) 2021 Wind River Systems, Inc.
+#
+#  Licensed under the Apache License, Version 2.0 (the "License");
+#  you may not use this file except in compliance with the License.
+#  You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+#  Unless required by applicable law or agreed to in writing, software
+#  distributed under the License is distributed on an "AS IS" BASIS,
+#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#  See the License for the specific language governing permissions and
+#  limitations under the License.
+
+from flask import Flask
+from flask_restx import Api
+
+from o2app import bootstrap
+from o2ims.views import configure_namespace as ims_route_configure_namespace
+from o2dms.api import configure_namespace as dms_route_configure_namespace
+
+
+# apibase = config.get_o2ims_api_base()
+app = Flask(__name__)
+app.config.SWAGGER_UI_DOC_EXPANSION = 'list'
+api = Api(app, version='1.0.0',
+          title='INF O2 Services API',
+          description='Swagger OpenAPI document for the INF O2 Services',
+          )
+bus = bootstrap.bootstrap()
+
+ims_route_configure_namespace(api)
+dms_route_configure_namespace(api)