fusenapi/server/ldap-admin/internal/config/config.go
laodaming 1cc0cc8d72 fix
2023-11-14 18:39:10 +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
RootDN string
}
}