Added schema for GET /api/poetry endpoint

This commit is contained in:
Dmitriy Shishkov 2023-08-01 13:34:55 +03:00
parent 2028dd9419
commit a41c684a74
Signed by: dm1sh
GPG Key ID: 027994B0AA357688

View File

@ -50,5 +50,8 @@ class User(BaseModel):
class UserInDB(User): class UserInDB(User):
hashed_password: str hashed_password: str
class Poem(BaseModel):
title: str
text: str
author: str