13 lines
225 B
Python
13 lines
225 B
Python
from datetime import datetime
|
|
from pydantic import BaseSettings
|
|
|
|
|
|
class Config(BaseSettings):
|
|
host: str = '127.0.0.1'
|
|
port: int = 8888
|
|
birthdate: datetime
|
|
|
|
|
|
config = Config(_env_file='.env')
|
|
|
|
__all__ = ['config']
|