add first bits of jinja template support

This commit is contained in:
Andreas Köpf
2022-12-21 20:17:47 +01:00
parent 55c79b98f1
commit d20828e759
9 changed files with 133 additions and 15 deletions
+2
View File
@@ -8,6 +8,8 @@ class BotSettings(BaseSettings):
BOT_TOKEN: str
BOT_CHANNEL_NAME: str = "bot"
OWNER_ID: int = None
TEMPLATE_DIR: str = "./templates"
DEBUG: bool = True
settings = BotSettings(_env_file=".env")