您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

15 行
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