12 lines
163 B
Go
12 lines
163 B
Go
|
|
package model
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
// A simple cache for requests.
|
||
|
|
type Response struct {
|
||
|
|
Url string
|
||
|
|
Content string
|
||
|
|
Processed bool
|
||
|
|
FetchDate time.Time
|
||
|
|
}
|