Add backend/app/schemas/__init__.py

This commit is contained in:
2026-06-09 23:31:13 +00:00
parent d2f9b12419
commit f576b54632
+7
View File
@@ -0,0 +1,7 @@
"""Pydantic schemas."""
from app.schemas.auth import *
from app.schemas.user import *
from app.schemas.workspace import *
from app.schemas.table import *
from app.schemas.record import *
from app.schemas.view import *