🎉 live server seems to be working now

This commit is contained in:
2026-05-14 14:29:57 +02:00
commit d72e439fd9
181 changed files with 47406 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
// ABOUTME: Audio output interface definition
// ABOUTME: Common interface for audio playback backends
package output
// Output represents an audio output device
type Output interface {
Open(sampleRate, channels, bitDepth int) error
Write(samples []int32) error
Close() error
SetVolume(volume int)
SetMuted(muted bool)
}