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

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
}