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

7
src/ldap/ldap_helpers.go Normal file
View File

@@ -0,0 +1,7 @@
package ldap
import (
"github.com/go-ldap/ldap/v3"
)
func LDAPEscapeFilter(input string) string { return ldap.EscapeFilter(input) }