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

Function Google

chapter7/patterns/search/search.go:32–35  ·  view source on GitHub ↗

Google search will be added to the search session if this option is provided.

(s *searchSession)

Source from the content-addressed store, hash-verified

30// Google search will be added to the search session if this option
31// is provided.
32func Google(s *searchSession) {
33 log.Println("search : Submit : Info : Adding Google")
34 s.searchers["google"] = google{}
35}
36
37// Bing search will be added to this search session if this option
38// is provided.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected