ldap.go 189 B

12345678910
  1. package main
  2. import (
  3. ldap "imuslab.com/arozos/mod/auth/ldap"
  4. )
  5. func ldapInit() {
  6. ldapHandler := ldap.NewLdapHandler(authAgent, registerHandler, sysdb)
  7. ldapHandler.SyncInformation()
  8. }