Sign in
go
/
website
/
7a60f303d8c4f3c0c7daab7b2175a6ff4f692698
/
.
/
_content
/
talks
/
2016
/
applicative
/
google
/
serial.go
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