Skip to content

Commit 2ce516a

Browse files
committed
renames
1 parent 3a6d279 commit 2ce516a

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed
Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
""" publications management subsystem
1+
"""publications management subsystem"""
22

3-
"""
43
import logging
54

65
from aiohttp import web
@@ -9,22 +8,22 @@
98

109
from ..email.plugin import setup_email
1110
from ..products.plugin import setup_products
12-
from . import _handlers
11+
from . import _rest
1312

14-
logger = logging.getLogger(__name__)
13+
_logger = logging.getLogger(__name__)
1514

1615

1716
@app_module_setup(
1817
__name__,
1918
ModuleCategory.ADDON,
2019
depends=["simcore_service_webserver.rest"],
2120
settings_name="WEBSERVER_PUBLICATIONS",
22-
logger=logger,
21+
logger=_logger,
2322
)
2423
def setup_publications(app: web.Application):
2524
assert app[APP_SETTINGS_KEY].WEBSERVER_PUBLICATIONS # nosec
2625

2726
setup_email(app)
2827
setup_products(app)
2928

30-
app.router.add_routes(_handlers.routes)
29+
app.router.add_routes(_rest.routes)

0 commit comments

Comments
 (0)