mirror of
https://github.com/safing/portbase
synced 2025-04-24 11:19:08 +00:00
15 lines
440 B
Go
15 lines
440 B
Go
//go:build !windows
|
|
|
|
package osdetail
|
|
|
|
// GetBinaryNameFromSystem queries the operating system for a human readable
|
|
// name for the given binary path.
|
|
func GetBinaryNameFromSystem(path string) (string, error) {
|
|
return "", ErrNotSupported
|
|
}
|
|
|
|
// GetBinaryIconFromSystem queries the operating system for the associated icon
|
|
// for a given binary path.
|
|
func GetBinaryIconFromSystem(path string) (string, error) {
|
|
return "", ErrNotSupported
|
|
}
|