blob: 1a723aaabf8f36952987ef54ee39fda850cc29d3 [file] [log] [blame]
package google
// START1 OMIT
type Result struct {
Title, URL string
}
func Search(query string) ([]Result, error) {
results := []Result{
Web(query),
Image(query),
Video(query),
}
return results, nil
}
// STOP1 OMIT