masto-bridges/masto_git_bridge/post.py

9 lines
162 B
Python
Raw Normal View History

2022-11-08 03:13:35 +00:00
from typing import Optional
from datetime import datetime
from pydantic import BaseModel
class Post(BaseModel):
timestamp: datetime
hash: Optional[str]