Files
m3o-go/examples/google/search/searchForVideos.go
2021-10-29 10:44:29 +00:00

18 lines
307 B
Go
Executable File

package example
import (
"fmt"
"os"
"go.m3o.com/google"
)
// Search for videos on Google
func SearchForVideos() {
googleService := google.NewGoogleService(os.Getenv("M3O_API_TOKEN"))
rsp, err := googleService.Search(&google.SearchRequest{
Query: "how to make donuts",
})
fmt.Println(rsp, err)
}