Files
netbird/client/internal/ipcauth/consoleuser_ios.go
T
2026-09-25 16:08:35 +02:00

11 lines
334 B
Go

package ipcauth
// isConsoleUser has no meaning on iOS, which has no console session to sit at.
//
// iOS satisfies the darwin constraint, so this keeps it off the macOS lookup.
// That one reaches SystemConfiguration through purego, which refuses to build
// for iOS without cgo.
func isConsoleUser(Identity) bool {
return false
}