diff --git a/backend/forum.py b/backend/forum.py index 97eef67..dbfdce1 100644 --- a/backend/forum.py +++ b/backend/forum.py @@ -20,10 +20,7 @@ class PostCreate(BaseModel): content: str -POSTS = [ - Post(1, 'first post', 'fbpb'), - Post(2, 'second_post', 'second post bitttttch') -] +POSTS = [] @app.get("/")