mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-22 16:13:31 +01:00
11 lines
160 B
Go
11 lines
160 B
Go
|
//go:build !darwin
|
||
|
// +build !darwin
|
||
|
|
||
|
package ssh
|
||
|
|
||
|
import "os/user"
|
||
|
|
||
|
func userNameLookup(username string) (*user.User, error) {
|
||
|
return user.Lookup(username)
|
||
|
}
|