(config LdapServiceConfig)
| 32 | } |
| 33 | |
| 34 | func NewLdapService(config LdapServiceConfig) *LdapService { |
| 35 | return &LdapService{ |
| 36 | config: config, |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | func (ldap *LdapService) IsConfigured() bool { |
| 41 | return ldap.isConfigured |
no outgoing calls