add structlog
This commit is contained in:
parent
7f0934ac14
commit
f64e488ab1
7 changed files with 323 additions and 36 deletions
8
src/fastapi_dynamic_response/settings.py
Normal file
8
src/fastapi_dynamic_response/settings.py
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
from pydantic_settings import BaseSettings
|
||||
|
||||
|
||||
class Settings(BaseSettings):
|
||||
ENV: str = "local"
|
||||
|
||||
class Config:
|
||||
env_file = "config.env"
|
||||
Loading…
Add table
Add a link
Reference in a new issue