hathoris/sources/interfaces.go

14 lines
190 B
Go

package sources
import ()
var SoundSources = map[string]SoundSource{}
type SoundSource interface {
GetName() string
IsActive() bool
IsEnabled() bool
Enable() error
Disable() error
}