feat: workout sesssions

This commit is contained in:
2026-05-20 15:33:32 +02:00
parent 4ec9aab5b6
commit 02bee84ed4
10 changed files with 413 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
<?php
namespace App\Enums;
enum WorkoutSource: string
{
case MANUAL = 'manual';
case STRAVA = 'strava';
case APPLE_HEALTH = 'apple_health';
case GARMIN = 'garmin';
case FITBIT = 'fitbit';
}