To reduce bot traffic you must login to view /lordwelch/glauth/src/commit/4759cef711caf73570ec9c85077d6221c2cf6e9a/v2/internal/monitoring/interfaces.go.
The GitHub login only links via username.
Files
timmy 1549d440b7 Update ldap server implementation to github.com/gwelch-contegix/ldaps
Update ldap client implementation to github.com/go-ldap/ldap/v3
Add contexts to all relevant functions eg NewHandler
Provide backwards compatibility for sql handlers
2026-08-30 21:10:02 -07:00

14 lines
276 B
Go

package monitoring
import "github.com/glauth/ldaps"
type MonitorInterface interface {
SetResponseTimeMetric(map[string]string, float64) error
SetLDAPMetric(map[string]string, float64) error
}
type LDAPServerInterface interface {
SetStats(bool)
GetStats() ldaps.Stats
}