mirror of
https://github.com/netbirdio/netbird.git
synced 2026-09-08 16:01:29 +02:00
10 lines
256 B
Go
10 lines
256 B
Go
//go:build !linux && !darwin && !freebsd && !windows
|
|
|
|
package consoleuser
|
|
|
|
// activeUID has no meaning on platforms without a console-user concept
|
|
// (ios, android). Returns no-user so TOFU never fires.
|
|
func activeUID() (uint32, bool) {
|
|
return 0, false
|
|
}
|