feat(api): add database models

This commit is contained in:
bwstudio
2026-05-21 20:41:45 +08:00
parent 57245cc288
commit 16baff934a
6 changed files with 318 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
from app.models.joke import Joke
from app.models.category import JokeType, JokeCrowd
from app.models.user import AdminUser
__all__ = ["Joke", "JokeType", "JokeCrowd", "AdminUser"]