This commit is contained in:
root
2026-02-04 18:35:38 +01:00
parent 3ed553b854
commit b209964631
8 changed files with 40 additions and 34 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()