Files
rikkei_simple_care/client/internal/camera/camera_other.go
2026-07-01 12:43:09 +07:00

21 lines
427 B
Go

//go:build !darwin
package camera
import "log"
// StartCapture is a no-op on non-darwin platforms (Windows uses different webcam API)
func StartCapture() error {
log.Println("[CAMERA] Native camera capture not supported on this platform")
return nil
}
// StopCapture is a no-op on non-darwin platforms
func StopCapture() {
}
// GetFrame always returns empty on non-darwin platforms
func GetFrame() string {
return ""
}