mirror of
https://github.com/netbirdio/netbird.git
synced 2026-03-31 06:24:18 -04:00
13 lines
231 B
Go
13 lines
231 B
Go
//go:build js
|
|
|
|
package server
|
|
|
|
import (
|
|
"os/user"
|
|
)
|
|
|
|
// parseUserCredentials is not supported on JS/WASM
|
|
func (s *Server) parseUserCredentials(_ *user.User) (uint32, uint32, []uint32, error) {
|
|
return 0, 0, nil, errNotSupported
|
|
}
|