mirror of
https://github.com/netbirdio/netbird.git
synced 2026-09-22 06:39:08 +02:00
11 lines
264 B
Go
11 lines
264 B
Go
//go:build windows
|
|
|
|
package ipcauth
|
|
|
|
// NewDefaultGroupResolver returns nil on Windows: group authorization uses the
|
|
// group SIDs carried in the client token (see the Windows transport
|
|
// credentials).
|
|
func NewDefaultGroupResolver() GroupResolver {
|
|
return nil
|
|
}
|