1package cache 2 3import "time" 4 5type Entry struct { 6 Endpoint string `json:"endpoint"` 7 SessionID string `json:"session_id"` 8 UpdatedAt time.Time `json:"updated_at"` 9} 10 11