mirror of
https://github.com/joaovitoriasilva/endurain.git
synced 2026-01-11 00:37:59 -05:00
[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
12 lines
158 B
Python
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
|