8 lines
189 B
Go
8 lines
189 B
Go
//go:build !linux
|
|
|
|
package audio
|
|
|
|
// NewEngine returns the silent engine on platforms without a backend
|
|
// (FreeBSD path pending: sndio/OSS)
|
|
func NewEngine() Engine { return nullEngine{} }
|