From 7ee38c3bbcdd563ab941cf6a7dfa7165abb35460 Mon Sep 17 00:00:00 2001 From: zhangqian <zhangqian@123.com> Date: 星期五, 25 十月 2024 16:24:35 +0800 Subject: [PATCH] 改名 --- app/config/config.py | 7 +++---- 1 files changed, 3 insertions(+), 4 deletions(-) diff --git a/app/config/config.py b/app/config/config.py index 8044029..87c05a3 100644 --- a/app/config/config.py +++ b/app/config/config.py @@ -1,16 +1,15 @@ -import os from pathlib import Path import yaml class Settings: secret_key: str = '' - bisheng_base_url: str = '' - ragflow_base_url: str = '' + sgb_base_url: str = '' + sgb_websocket_url: str = '' + fwr_base_url: str = '' database_url: str = '' PUBLIC_KEY: str PRIVATE_KEY: str - def __init__(self, **kwargs): # Check if all required fields are provided and set them for field in self.__annotations__.keys(): -- Gitblit v1.8.0