17 lines
590 B
Python
17 lines
590 B
Python
from .base import 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 .job import Job
|
|
from .health_metric import HealthMetric
|
|
from .sync_log import SyncLog
|
|
from .activity_state import GarminActivityState
|
|
from .health_state import HealthSyncState
|
|
from .scheduled_job import ScheduledJob
|
|
from .bike_setup import BikeSetup
|
|
from .segment import Segment
|
|
from .segment_effort import SegmentEffort |