Files
symph/audio/engine_stub.go
T
2026-07-15 01:28:56 -04:00

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{} }