Files
openlan/pkg/config/ldap.go
2025-04-24 15:25:24 +08:00

12 lines
377 B
Go
Executable File

package config
type LDAP struct {
Server string `json:"server" yaml:"server"`
BindDN string `json:"bindDN" yaml:"bindDN"`
BindPass string `json:"bindPass" yaml:"bindPass"`
BaseDN string `json:"baseDN" yaml:"baseDN"`
Attribute string `json:"attribute" yaml:"attribute"`
Filter string `json:"filter" yaml:"filter"`
Tls bool `json:"tLS" yaml:"tLS"`
}