Watch
1
0
Fork
You've already forked RedFlag
0
RedFlag/agent/internal/system/software_other.go
Fimeg f487de554a desktop: become the machine console
Qt/QML now carries 11 local views while the Agent owns observation and intent. Tauri, WebKit, and the second React desktop build leave together. Linux ships first; Windows waits for a native Qt runner.
2026-09-01 08:29:58 -04:00

20 lines
497 B
Go

//go:build !linux
package system
import (
"fmt"
"time"
)
func getSoftwareSnapshot() (*SoftwareSnapshot, error) {
return &SoftwareSnapshot{Supported: false, CollectedAt: time.Now().UTC()}, nil
}
func getPackageDetail(packageType, identity string) (*PackageDetail, error) {
return nil, fmt.Errorf("software detail not supported on this platform")
}
func findSoftwareOwner(path string) (*SoftwareOwner, error) {
return nil, fmt.Errorf("software ownership not supported on this platform")
}