This commit is contained in:
root
2026-02-04 18:35:38 +01:00
parent 3712c4ddbd
commit 173bb371eb
9 changed files with 47 additions and 42 deletions

9
config.py Executable file
View File

@@ -0,0 +1,9 @@
from pydantic import Field
from tchap_bot.config import Config
class ConfigProxy(Config):
https_proxy: str = Field("", description="Proxy URL")
env_config = ConfigProxy()