fix basic config layout

This commit is contained in:
aynakeya
2024-04-15 10:04:27 -07:00
parent c9cd78b0eb
commit 139f331a14
14 changed files with 201 additions and 131 deletions

View File

@@ -4,15 +4,3 @@ type AudioDevice struct {
Name string
Description string
}
type PlayerPropertyValue any
type PlayerProperty string
const (
PlayerPropIdleActive PlayerProperty = "idle-active"
PlayerPropTimePos PlayerProperty = "time-pos"
PlayerPropDuration PlayerProperty = "duration"
PlayerPropPercentPos PlayerProperty = "percent-pos"
PlayerPropPause PlayerProperty = "pause"
PlayerPropVolume PlayerProperty = "volume"
)