add structlog

This commit is contained in:
Waylon S. Walker 2024-10-16 20:46:11 -05:00
parent 7f0934ac14
commit f64e488ab1
7 changed files with 323 additions and 36 deletions

View file

@ -0,0 +1,8 @@
from pydantic_settings import BaseSettings
class Settings(BaseSettings):
ENV: str = "local"
class Config:
env_file = "config.env"