From d59474f0a6bac3bdc911db735ef1bddd49dc4024 Mon Sep 17 00:00:00 2001 From: bwstudio Date: Thu, 21 May 2026 20:48:58 +0800 Subject: [PATCH] fix(api): export base schema classes from __init__.py Co-Authored-By: Claude Opus 4.7 --- api/app/schemas/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/api/app/schemas/__init__.py b/api/app/schemas/__init__.py index d8df8b0..93639e9 100644 --- a/api/app/schemas/__init__.py +++ b/api/app/schemas/__init__.py @@ -1,11 +1,14 @@ from .auth import LoginRequest, TokenResponse from .category import ( + JokeCrowdBase, JokeCrowdCreate, JokeCrowdResponse, + JokeTypeBase, JokeTypeCreate, JokeTypeResponse, ) from .joke import ( + JokeBase, JokeCreate, JokeResponse, JokeUpdate,