fusenapi/server/ldap-admin/internal/config/config.go
laodaming f8b8d98723 fix
2023-11-16 16:57:29 +08:00

23 lines
388 B
Go

package config
import (
"fusenapi/server/ldap-admin/internal/types"
"github.com/zeromicro/go-zero/rest"
)
type Config struct {
rest.RestConf
SourceMysql string
Auth types.Auth
SourceRabbitMq string
Ldap struct {
Host string
BindDN string
Password string
BaseDN string
RootDN string
PeopleGroupDN string
}
}