14 lines
237 B
Python
14 lines
237 B
Python
from datetime import date
|
|
from pydantic import BaseSettings
|
|
|
|
|
|
class Config(BaseSettings):
|
|
host: str = '127.0.0.1'
|
|
port: int = 80
|
|
birthdate: date = date(2007, 10, 13)
|
|
|
|
|
|
config = Config(_env_file='.env')
|
|
|
|
|
|
__all__ = ['config']
|