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"
|