fusenapi/server/ldap-admin/internal/config/config.go
laodaming 6822c3d94c fix
2023-11-15 14:18:45 +08:00

21 lines
322 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
}
}