Files
endurain/backend/app/migrations/schema.py
João Vitória Silva 4d23f37e37 gpx laps on migration 3
[backend] split migrations into specific files for better readbility
[backend] added support to gpx laps on migration 3
[frontend] fixed issue on laps format when showing speed
[frontend] changed icon for transition activity in summary
2025-04-16 22:26:14 +01:00

12 lines
158 B
Python

from enum import Enum
class StreamType(Enum):
HEART_RATE = 1
POWER = 2
CADENCE = 3
ELEVATION = 4
SPEED = 5
PACE = 6
LATLONG = 7