WIP: Refactor Aurora (3.0.0) #29

Draft
cswimr wants to merge 347 commits from aurora-pydantic into main
Showing only changes of commit 2da76eb51a - Show all commits

View file

@ -68,3 +68,11 @@ class Moderation(BaseModel):
return cls(**case)
return None
class JSONEncoder(json.JSONEncoder):
def default(self, o):
if isinstance(o, datetime):
return o.timestamp()
if isinstance(o, timedelta):
return str(o)
return super().default(o)