From f576b54632a3ffdcf3ffec96abbc8476c8572188 Mon Sep 17 00:00:00 2001 From: Leopoldadmin Date: Tue, 9 Jun 2026 23:31:13 +0000 Subject: [PATCH] Add backend/app/schemas/__init__.py --- backend/app/schemas/__init__.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 backend/app/schemas/__init__.py diff --git a/backend/app/schemas/__init__.py b/backend/app/schemas/__init__.py new file mode 100644 index 0000000..6087012 --- /dev/null +++ b/backend/app/schemas/__init__.py @@ -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 *