7 lines
176 B
Python
7 lines
176 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class NotificationsSettings(BaseModel):
|
|
cron: str = "0 12 * * *"
|
|
telegram_bot_token: str = "123456:ABC-DEF1234ghIkl-zyx57W2v1u123ew11"
|