Added exercises; list improvements #38

Merged
robin merged 6 commits from dev into main 2026-09-04 12:30:59 +02:00
Showing only changes of commit 4697435fc9 - Show all commits
+2
View File
@@ -17,10 +17,12 @@ type ExerciseRepo struct {
}
func (r *ExerciseRepo) CreateExercise(ctx context.Context) (*domain.Exercise, error) {
_ = ctx
return nil, nil
}
func (r *ExerciseRepo) DeleteExercise(ctx context.Context, id string) error {
_, _ = ctx, id
return nil
}