mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-16 15:26:40 +00:00
9 lines
140 B
Go
9 lines
140 B
Go
//go:build js
|
|
|
|
package util
|
|
|
|
// IsAdmin returns false for WASM as there's no admin concept in browser
|
|
func IsAdmin() bool {
|
|
return false
|
|
}
|