12 lines
345 B
Python
12 lines
345 B
Python
from pydantic_settings import BaseSettings, SettingsConfigDict
|
|
|
|
|
|
class Settings(BaseSettings):
|
|
model_config = SettingsConfigDict(env_file=".env", env_prefix="WNZS_")
|
|
PGSQL: str = ""
|
|
WECOM_PROXY: str = ""
|
|
WECOM_CORPID: str = ""
|
|
WECOM_CORPSECRET: str = ""
|
|
WECOM_APP_TOKEN: str = ""
|
|
WECOM_APP_ENCODING_AES_KEY: str = ""
|