From 4907c5db2727dc5c45829cd2ca571e66bc22b84e Mon Sep 17 00:00:00 2001 From: appel_c Date: Thu, 4 Jul 2024 09:55:03 +0200 Subject: [PATCH] fix: add get_config template to pre_startup --- csaxs_bec/bec_ipython_client/startup/pre_startup.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/csaxs_bec/bec_ipython_client/startup/pre_startup.py b/csaxs_bec/bec_ipython_client/startup/pre_startup.py index b1e4301..c9e6274 100644 --- a/csaxs_bec/bec_ipython_client/startup/pre_startup.py +++ b/csaxs_bec/bec_ipython_client/startup/pre_startup.py @@ -12,3 +12,10 @@ def extend_command_line_args(parser): parser.add_argument("--session", help="Session name", type=str, default="cSAXS") return parser + + +# def get_config() -> ServiceConfig: +# """ +# Create and return the service configuration. +# """ +# return ServiceConfig(redis={"host": "localhost", "port": 6379})