Files
crowsnest/internal/model/response.go

12 lines
160 B
Go
Raw Normal View History

package model
import "time"
// A simple cache for requests.
type Response struct {
Url string
2025-01-07 09:32:57 +01:00
Content []byte
Processed bool
FetchDate time.Time
}