17 lines
223 B
Go
17 lines
223 B
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type CacheItem struct {
|
|
Key string
|
|
Value string
|
|
|
|
// Group defines what it should be a reference to.
|
|
// youtube, reddit, ect
|
|
Group string
|
|
Expires time.Time
|
|
IsTainted bool
|
|
}
|