package stmp import ( "one-api/common/config" ) func getLogo() string { if config.Logo == "" { return "" } return `` } func getSystemName() string { if config.SystemName == "" { return "One API" } return config.SystemName } func getDefaultTemplate(content string) string { return `
` + getLogo() + `
` + content + `
` }