2025-12-26 15:40:24 +08:00
|
|
|
package service
|
|
|
|
|
|
|
|
|
|
type SystemSettings struct {
|
|
|
|
|
RegistrationEnabled bool
|
|
|
|
|
EmailVerifyEnabled bool
|
|
|
|
|
|
|
|
|
|
SmtpHost string
|
|
|
|
|
SmtpPort int
|
|
|
|
|
SmtpUsername string
|
|
|
|
|
SmtpPassword string
|
|
|
|
|
SmtpFrom string
|
|
|
|
|
SmtpFromName string
|
|
|
|
|
SmtpUseTLS bool
|
|
|
|
|
|
|
|
|
|
TurnstileEnabled bool
|
|
|
|
|
TurnstileSiteKey string
|
|
|
|
|
TurnstileSecretKey string
|
|
|
|
|
|
|
|
|
|
SiteName string
|
|
|
|
|
SiteLogo string
|
|
|
|
|
SiteSubtitle string
|
|
|
|
|
ApiBaseUrl string
|
|
|
|
|
ContactInfo string
|
|
|
|
|
DocUrl string
|
|
|
|
|
|
|
|
|
|
DefaultConcurrency int
|
|
|
|
|
DefaultBalance float64
|
2025-12-28 22:19:18 +08:00
|
|
|
|
|
|
|
|
SimpleMode bool // 简单模式
|
2025-12-26 15:40:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type PublicSettings struct {
|
|
|
|
|
RegistrationEnabled bool
|
|
|
|
|
EmailVerifyEnabled bool
|
|
|
|
|
TurnstileEnabled bool
|
|
|
|
|
TurnstileSiteKey string
|
|
|
|
|
SiteName string
|
|
|
|
|
SiteLogo string
|
|
|
|
|
SiteSubtitle string
|
|
|
|
|
ApiBaseUrl string
|
|
|
|
|
ContactInfo string
|
|
|
|
|
DocUrl string
|
|
|
|
|
Version string
|
2025-12-28 22:19:18 +08:00
|
|
|
SimpleMode bool // 简单模式
|
2025-12-26 15:40:24 +08:00
|
|
|
}
|