mirror of
https://github.com/furyhawk/agent_delta.git
synced 2026-07-21 02:05:36 +00:00
7 lines
172 B
Python
7 lines
172 B
Python
"""Database module."""
|
|
|
|
# SQLModel uses SQLModel class directly as base, no separate Base class needed
|
|
from app.db.base import TimestampMixin
|
|
|
|
__all__ = ["TimestampMixin"]
|