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