Files
services/youtube/main.go
2021-10-25 11:37:05 +01:00

36 lines
755 B
Go

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)
}
}