mirror of
https://github.com/luscis/openlan.git
synced 2025-10-05 16:47:11 +08:00
12 lines
277 B
Go
Executable File
12 lines
277 B
Go
Executable File
package config
|
|
|
|
type LDAP struct {
|
|
Server string `json:"server"`
|
|
BindDN string `json:"bindDN"`
|
|
BindPass string `json:"bindPass"`
|
|
BaseDN string `json:"baseDN"`
|
|
Attribute string `json:"attribute"`
|
|
Filter string `json:"filter"`
|
|
Tls bool `json:"tLS"`
|
|
}
|