| 1 | //go:build !windows |
| 2 | |
| 3 | package appidentity |
| 4 | |
| 5 | func ApplyToCurrentProcess() error { return nil } |
| 6 | |
| 7 | func RepairOwnedShortcuts(string) error { return nil } |
| 8 | |
| 9 | func RepairShortcuts(root string, paths []string) error { return validateShortcutPaths(root, paths) } |
| 10 |