mirror of
https://github.com/netbirdio/netbird
synced 2026-04-29 17:47:06 +02:00
9 lines
145 B
Go
9 lines
145 B
Go
//go:build js
|
|
|
|
package server
|
|
|
|
// validateUsername is not supported on JS/WASM
|
|
func validateUsername(_ string) error {
|
|
return errNotSupported
|
|
}
|