mirror of
https://github.com/netbirdio/netbird.git
synced 2026-09-26 08:39:06 +02:00
11 lines
334 B
Go
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
|
|
}
|