mirror of
https://github.com/netbirdio/netbird.git
synced 2026-09-26 16:49:08 +02:00
13 lines
368 B
Go
13 lines
368 B
Go
//go:build !linux && !darwin && !freebsd && !windows
|
|
|
|
package ipcauth
|
|
|
|
// isConsoleUser has no meaning on a platform that exposes no console-user
|
|
// lookup, where nobody is ever at a console.
|
|
//
|
|
// Android is not built from here: it satisfies linux and takes that lookup,
|
|
// which is present but never finds a seat.
|
|
func isConsoleUser(Identity) bool {
|
|
return false
|
|
}
|