1
0
forked from wrenn/wrenn
Reviewed-on: wrenn/wrenn#33
This commit is contained in:
2026-04-18 08:57:07 +00:00
parent 512c043c5c
commit 23dca7d9ff
18 changed files with 1018 additions and 129 deletions

View File

@ -41,6 +41,13 @@ type Channel struct {
UpdatedAt pgtype.Timestamptz `json:"updated_at"`
}
type DailyUsage struct {
TeamID pgtype.UUID `json:"team_id"`
Day pgtype.Date `json:"day"`
CpuMinutes pgtype.Numeric `json:"cpu_minutes"`
RamMbMinutes pgtype.Numeric `json:"ram_mb_minutes"`
}
type Host struct {
ID pgtype.UUID `json:"id"`
Type string `json:"type"`