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