Add YouTube search (#241)

This commit is contained in:
Asim Aslam
2021-10-25 11:37:05 +01:00
committed by GitHub
parent 5cee69a09e
commit 55464e8104
15 changed files with 901 additions and 4 deletions

35
youtube/main.go Normal file
View File

@@ -0,0 +1,35 @@
package main
import (
"github.com/micro/micro/v3/service"
"github.com/micro/micro/v3/service/config"
"github.com/micro/micro/v3/service/logger"
"github.com/micro/services/youtube/handler"
pb "github.com/micro/services/youtube/proto"
)
func main() {
// Create service
srv := service.New(
service.Name("youtube"),
service.Version("latest"),
)
// Setup google maps
c, err := config.Get("google.apikey")
if err != nil {
logger.Fatalf("Error loading config: %v", err)
}
apiKey := c.String("")
if len(apiKey) == 0 {
logger.Fatalf("Missing required config: google.apikey")
}
// Register handler
pb.RegisterYoutubeHandler(srv.Server(), handler.New(apiKey))
// Run service
if err := srv.Run(); err != nil {
logger.Fatal(err)
}
}