Files
sub2api/backend/internal/pkg/usagestats/account_stats.go
2025-12-19 21:26:19 +08:00

9 lines
186 B
Go

package usagestats
// AccountStats 账号使用统计
type AccountStats struct {
Requests int64 `json:"requests"`
Tokens int64 `json:"tokens"`
Cost float64 `json:"cost"`
}