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.
20 lines
497 B
Go
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")
|
|
}
|