ldap-proxy/internal/ldap/type.go
2020-08-22 20:49:54 -07:00

22 lines
269 B
Go

package ldap
import (
"context"
"github.com/hashicorp/go-hclog"
ldap "github.com/ps78674/ldapserver"
)
type naClient interface {
AuthEntity(context.Context, string, string) error
}
type server struct {
*ldap.Server
c naClient
l hclog.Logger
nc []string
}