mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-16 15:26:40 +00: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
|
|
}
|