This commit introduces several new analysis documents, including Auto-Match Load Performance Analysis, Folder Picker Analysis, Monorepo Migration Summary, and various performance analysis documents. Additionally, the installation scripts are updated to reflect changes in backend service paths, ensuring proper integration with the new backend structure. These enhancements provide better documentation and streamline the setup process for users.
10 lines
176 B
Python
10 lines
176 B
Python
"""Database base configuration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from backend.db.models import Base
|
|
from backend.db.session import engine
|
|
|
|
__all__ = ["Base", "engine"]
|
|
|