//go:build !windows && !linux package client func handleCameraAction(action, _ string) (handled bool, success bool, message string) { switch action { case "camera_snapshot", "camera_list": return true, false, "camera capture is not supported on this platform" default: return false, false, "" } }