mirror of https://github.com/jetkvm/kvm.git
15 lines
349 B
Go
15 lines
349 B
Go
package kvm
|
|
|
|
import (
|
|
"os/exec"
|
|
)
|
|
|
|
func runAudioClient() (cmd *exec.Cmd, err error) {
|
|
return startNativeBinary("/userdata/jetkvm/bin/jetkvm_audio")
|
|
}
|
|
|
|
func StartAudioServer() {
|
|
nativeAudioSocketListener = StartNativeSocketServer("/var/run/jetkvm_audio.sock", handleAudioClient, false)
|
|
nativeLogger.Debug().Msg("native app audio sock started")
|
|
}
|