mirror of
https://github.com/luscis/openlan.git
synced 2025-12-24 11:10:54 +08:00
12 lines
377 B
Go
Executable File
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"`
|
|
}
|