You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 rivejä
204 B

  1. import datetime
  2. from pydantic import BaseModel
  3. class PostCreate(BaseModel):
  4. text: str
  5. class PostResponse(PostCreate):
  6. created_at: datetime.datetime
  7. class Config:
  8. orm_mode = True