Sign in
go
/
talks
/
fb41a9b433bf1d7e71d768e703c81170aa4f282c
/
.
/
content
/
2016
/
applicative
/
google
/
serial.go
blob: 1a723aaabf8f36952987ef54ee39fda850cc29d3 [
file
]
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