10 lines
122 B
Go
10 lines
122 B
Go
|
package cache
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type CachedReport struct {
|
||
|
ReportID string
|
||
|
UserID string
|
||
|
GeneratedAt time.Time
|
||
|
}
|