added activity view
This commit is contained in:
@@ -51,22 +51,41 @@ backend/
|
||||
├── src/
|
||||
│ ├── api/
|
||||
│ │ ├── activities.py
|
||||
│ │ ├── auth.py # Refactored from setup.py
|
||||
│ │ ├── config_routes.py # Refactored from setup.py
|
||||
│ │ ├── logs.py
|
||||
│ │ ├── metrics.py
|
||||
│ │ ├── scheduling.py
|
||||
│ │ ├── status.py
|
||||
│ │ └── sync.py
|
||||
│ ├── models/
|
||||
│ │ ├── activity.py
|
||||
│ │ └── health_metric.py
|
||||
│ │ ├── health_metric.py
|
||||
│ │ ├── job.py
|
||||
│ │ ├── scheduled_job.py
|
||||
│ │ ├── sync_log.py
|
||||
│ │ └── weight_record.py
|
||||
│ └── services/
|
||||
│ ├── sync_app.py
|
||||
│ └── garmin/
|
||||
│ └── client.py
|
||||
│ ├── garmin/
|
||||
│ │ ├── auth.py
|
||||
│ │ ├── client.py
|
||||
│ │ └── data.py
|
||||
│ ├── sync/
|
||||
│ │ ├── activity.py
|
||||
│ │ ├── health.py
|
||||
│ │ └── weight.py
|
||||
│ ├── fitbit_client.py
|
||||
│ ├── job_manager.py
|
||||
│ ├── postgresql_manager.py
|
||||
│ ├── scheduler.py
|
||||
│ └── sync_app.py
|
||||
└── tests/
|
||||
├── integration/
|
||||
│ ├── test_sync_flow.py
|
||||
└── unit/
|
||||
├── test_api/
|
||||
│ ├── test_activities.py
|
||||
│ └── test_metrics.py
|
||||
│ ├── test_metrics.py
|
||||
└── test_services/
|
||||
└── test_sync_app.py
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user