before claude fix #1
This commit is contained in:
13
FitnessSync/backend/src/models/__init__.py
Normal file
13
FitnessSync/backend/src/models/__init__.py
Normal file
@@ -0,0 +1,13 @@
|
||||
from sqlalchemy.ext.declarative import declarative_base
|
||||
|
||||
# Create a base class for all models to inherit from
|
||||
Base = declarative_base()
|
||||
|
||||
# Import all models here to ensure they're registered with the Base
|
||||
from .config import Configuration
|
||||
from .api_token import APIToken
|
||||
from .auth_status import AuthStatus
|
||||
from .weight_record import WeightRecord
|
||||
from .activity import Activity
|
||||
from .health_metric import HealthMetric
|
||||
from .sync_log import SyncLog
|
||||
Reference in New Issue
Block a user