Sign in
go
/
talks
/
a07c284bcf333dc17a1489fd441e8fccf1e01c2a
/
.
/
content
/
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