We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0f8a7f commit 8acc41cCopy full SHA for 8acc41c
…e_service_webserver/storage/_handlers.py …mcore_service_webserver/storage/_rest.pyservices/web/server/src/simcore_service_webserver/storage/_handlers.py renamed to services/web/server/src/simcore_service_webserver/storage/_rest.py
services/web/server/src/simcore_service_webserver/storage/plugin.py
@@ -9,7 +9,7 @@
9
10
from .._constants import APP_SETTINGS_KEY
11
from ..rest.plugin import setup_rest
12
-from . import _handlers
+from . import _rest
13
14
_logger = logging.getLogger(__name__)
15
@@ -21,4 +21,4 @@ def setup_storage(app: web.Application):
21
assert app[APP_SETTINGS_KEY].WEBSERVER_STORAGE # nosec
22
23
setup_rest(app)
24
- app.router.add_routes(_handlers.routes)
+ app.router.add_routes(_rest.routes)
0 commit comments