masto-bridges/masto_git_bridge/models.py

9 lines
190 B
Python
Raw Normal View History

2022-11-08 03:13:35 +00:00
from pydantic import BaseModel
class Account(BaseModel):
"""Not transcribing full model now, just using to check"""
acct: str
id: int
class Config:
extra = 'ignore'