From a41c684a74a77ac2815cb4c882ad46d84ff2be72 Mon Sep 17 00:00:00 2001 From: dm1sh Date: Tue, 1 Aug 2023 13:34:55 +0300 Subject: [PATCH] Added schema for GET /api/poetry endpoint --- back/schemas.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/back/schemas.py b/back/schemas.py index afce18a..0569960 100644 --- a/back/schemas.py +++ b/back/schemas.py @@ -50,5 +50,8 @@ class User(BaseModel): class UserInDB(User): hashed_password: str - +class Poem(BaseModel): + title: str + text: str + author: str