This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2021-11-05 09:37:30 +00:00
|
|
|
package search
|
|
|
|
|
2021-12-02 14:28:58 +00:00
|
|
|
import (
|
|
|
|
"github.com/nmcclain/ldap"
|
|
|
|
)
|
2021-11-05 09:37:30 +00:00
|
|
|
|
|
|
|
type Searcher interface {
|
|
|
|
Search(req *Request) (ldap.ServerSearchResult, error)
|
|
|
|
}
|