Rename profile/icons to profile/binmeta

This commit is contained in:
Daniel
2023-12-19 15:33:45 +01:00
parent a88de1532c
commit 2ae24656fc
23 changed files with 49 additions and 49 deletions

View File

@@ -0,0 +1,10 @@
//go:build !linux && !windows
package binmeta
import "context"
// GetIconAndName returns zero values for unsupported platforms.
func GetIconAndName(ctx context.Context, binPath string, homeDir string) (icon *Icon, name string, err error) {
return nil, "", nil
}