from dataclasses import dataclass
@dataclass
class ExerciseConfig:
name: str
video: str
start: int
end: int
class WorkoutConfig:
pass