start to write a new LDAP interface

This commit is contained in:
2026-04-03 18:24:14 -04:00
parent f204069392
commit bb649aef48
4 changed files with 146 additions and 181 deletions

9
src/ldap/ldap_search.go Normal file
View File

@@ -0,0 +1,9 @@
package ldap
import (
"github.com/go-ldap/ldap/v3"
)
type LDAPSearch struct {
search *ldap.SearchResult
}