返回 DeepSeek-Reasonix
identity_other.go
根目录 / internal / appidentity / identity_other.go
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
10 lines GO