MCPcopy Create free account
hub / github.com/goinaction/code / gResult

Struct gResult

chapter8/listing24/listing24.go:14–23  ·  view source on GitHub ↗

gResult maps to the result document received from the search.

Source from the content-addressed store, hash-verified

12type (
13 // gResult maps to the result document received from the search.
14 gResult struct {
15 GsearchResultClass string `json:"GsearchResultClass"`
16 UnescapedURL string `json:"unescapedUrl"`
17 URL string `json:"url"`
18 VisibleURL string `json:"visibleUrl"`
19 CacheURL string `json:"cacheUrl"`
20 Title string `json:"title"`
21 TitleNoFormatting string `json:"titleNoFormatting"`
22 Content string `json:"content"`
23 }
24
25 // gResponse contains the top level document.
26 gResponse struct {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected