goploy/config/ldap.go

13 lines
322 B
Go
Raw Normal View History

2024-01-19 09:25:00 +08:00
package config
type LDAPConfig struct {
Enabled bool `toml:"enabled"`
URL string `toml:"url"`
BindDN string `toml:"bindDN"`
Password string `toml:"password"`
BaseDN string `toml:"baseDN"`
UID string `toml:"uid"`
Name string `toml:"name"`
UserFilter string `toml:"userFilter"`
}