Initial commit
This commit is contained in:
commit
5d0a210e6d
16 changed files with 998 additions and 0 deletions
13
sources/interfaces.go
Normal file
13
sources/interfaces.go
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
package sources
|
||||
|
||||
import ()
|
||||
|
||||
var SoundSources = map[string]SoundSource{}
|
||||
|
||||
type SoundSource interface {
|
||||
GetName() string
|
||||
IsActive() bool
|
||||
IsEnabled() bool
|
||||
Enable() error
|
||||
Disable() error
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue