packagenvdmirrorimport("time")// Cache entrytypeEntrystruct{// time that entry was setTimetime.Time`json:"time"`Headersmap[string]string`json:"headers"`}// URL cachetypeCacheinterface{Get(string)(map[string]string,bool)Set(string,map[string]string)error// delete cache entry Delete(string)errorClose()error// save and close cache file}