Skip to content

Commit 58c31e0

Browse files
committed
fix: path change from key to config
1 parent d0014c7 commit 58c31e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

srv/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def get(self, key: str):
4141
def make_app(config_values: Path) -> tornado.web.Application:
4242
return tornado.web.Application(
4343
handlers=[
44-
(r"/key/(?P<key>[\d\w.-]+)\/?", KeyValueHandler),
44+
(r"/config/(?P<key>[\d\w.-]+)\/?", KeyValueHandler),
4545
],
4646
# settings:
4747
config_values=config_values,

0 commit comments

Comments
 (0)