| 20 | ) |
| 21 | |
| 22 | type configHandler struct { |
| 23 | backend config.Backend |
| 24 | log *zerolog.Logger |
| 25 | cfg *config.Config |
| 26 | yubikeyAuth *yubigo.YubiAuth |
| 27 | ldohelper LDAPOpsHelper |
| 28 | attmatcher *regexp.Regexp |
| 29 | |
| 30 | monitor monitoring.MonitorInterface |
| 31 | tracer trace.Tracer |
| 32 | } |
| 33 | |
| 34 | // NewConfigHandler creates a new config backed handler |
| 35 | func NewConfigHandler(opts ...Option) Handler { |
nothing calls this directly
no outgoing calls
no test coverage detected