refactor(tracker): remove unused DoFunc type

This commit is contained in:
5684185+vsariola@users.noreply.github.com
2026-01-21 20:50:26 +02:00
parent 6629a9fdfa
commit 74beb6760c

View File

@ -33,8 +33,6 @@ type (
Enabled() bool
}
DoFunc func()
AddTrack Model
DeleteTrack Model
SplitTrack Model
@ -130,10 +128,6 @@ func (a Action) Enabled() bool {
return e.Enabled()
}
// DoFunc
func (d DoFunc) Do() { d() }
// AddTrack
func (m *Model) AddTrack() Action { return MakeAction((*AddTrack)(m)) }