report struct

master
Matthew 2024-10-23 19:43:57 -04:00
parent 167d1bb067
commit 6dcee20a1c
Signed by: matthew
SSH Key Fingerprint: SHA256:piIXekA9q1p0ZGi4ogFbNY1embip5Ytbi3v8AZ8UYq4
1 changed files with 9 additions and 0 deletions

9
internal/cache/report.go vendored Normal file
View File

@ -0,0 +1,9 @@
package cache
import "time"
type CachedReport struct {
ReportID string
UserID string
GeneratedAt time.Time
}