fusenapi/server/ldap-admin/internal/config/config.go

21 lines
322 B
Go
Raw Normal View History

2023-11-13 09:52:20 +00:00
package config
2023-11-14 03:45:25 +00:00
import (
"fusenapi/server/ldap-admin/internal/types"
"github.com/zeromicro/go-zero/rest"
)
2023-11-13 09:52:20 +00:00
type Config struct {
rest.RestConf
SourceMysql string
Auth types.Auth
SourceRabbitMq string
2023-11-14 09:33:05 +00:00
Ldap struct {
Host string
BindDN string
Password string
2023-11-15 06:18:45 +00:00
BaseDN string
2023-11-14 09:33:05 +00:00
}
2023-11-13 09:52:20 +00:00
}