mirror of
https://github.com/QuantumNous/new-api.git
synced 2026-03-30 10:34:20 +00:00
22 lines
440 B
Go
22 lines
440 B
Go
package system_setting
|
|
|
|
import "github.com/QuantumNous/new-api/setting/config"
|
|
|
|
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
|
|
}
|