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