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