2025-10-10 13:18:26 +08:00
|
|
|
package system_setting
|
|
|
|
|
|
2025-10-11 15:30:09 +08:00
|
|
|
import "github.com/QuantumNous/new-api/setting/config"
|
2025-10-10 13:18:26 +08:00
|
|
|
|
|
|
|
|
type LegalSettings struct {
|
|
|
|
|
UserAgreement string `json:"user_agreement"`
|
|
|
|
|
PrivacyPolicy string `json:"privacy_policy"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var defaultLegalSettings = LegalSettings{
|
|
|
|
|
UserAgreement: "",
|
|
|
|
|
PrivacyPolicy: "",
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
|
config.GlobalConfig.Register("legal", &defaultLegalSettings)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func GetLegalSettings() *LegalSettings {
|
|
|
|
|
return &defaultLegalSettings
|
|
|
|
|
}
|