package plugin
import (
"encoding/base64"
)
// QuotaPageHTML contains the full standalone HTML/CSS/JS single-file QuotaCard UI.
const QuotaPageHTML = `
用量配额 - CLIProxyAPI
加载失败
`
// GetQuotaPageHTML returns the raw HTML bytes.
func GetQuotaPageHTML() []byte {
return []byte(QuotaPageHTML)
}
// GetQuotaPageBase64 returns the base64-encoded Quota page HTML.
func GetQuotaPageBase64() string {
return base64.StdEncoding.EncodeToString([]byte(QuotaPageHTML))
}