mirror of
https://github.com/luckfox-eng29/kvm.git
synced 2026-01-17 19:22:15 +01:00
25 lines
485 B
Go
25 lines
485 B
Go
//go:build !linux
|
|
|
|
package kvm
|
|
|
|
import (
|
|
"fmt"
|
|
"os/exec"
|
|
)
|
|
|
|
func startVideoBinary(binaryPath string) (*exec.Cmd, error) {
|
|
return nil, fmt.Errorf("not supported")
|
|
}
|
|
|
|
func startAudioBinary(binaryPath string) (*exec.Cmd, error) {
|
|
return nil, fmt.Errorf("not supported")
|
|
}
|
|
|
|
func startVpnBinary(binaryPath string) (*exec.Cmd, error) {
|
|
return nil, fmt.Errorf("not supported")
|
|
}
|
|
|
|
func startDisplayBinary(binaryPath string) (*exec.Cmd, error) {
|
|
return nil, fmt.Errorf("not supported")
|
|
}
|