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