cr-report-app/internal/cache/report.go

10 lines
122 B
Go
Raw Normal View History

2024-10-23 19:43:57 -04:00
package cache
import "time"
type CachedReport struct {
ReportID string
UserID string
GeneratedAt time.Time
}