mirror of
https://github.com/fastapi/fastapi.git
synced 2026-02-05 11:51:26 -05:00
11 lines
198 B
Python
11 lines
198 B
Python
from pydantic.v1 import BaseSettings
|
|
|
|
|
|
class Settings(BaseSettings):
|
|
app_name: str = "Awesome API"
|
|
admin_email: str
|
|
items_per_user: int = 50
|
|
|
|
class Config:
|
|
env_file = ".env"
|