mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-11 19:04:35 +00:00
45 lines
1.0 KiB
Go
45 lines
1.0 KiB
Go
package main
|
|
|
|
import (
|
|
"github.com/micro/services/geocoding/handler"
|
|
pb "github.com/micro/services/geocoding/proto"
|
|
"github.com/micro/services/pkg/tracing"
|
|
|
|
"github.com/micro/micro/v3/service"
|
|
"github.com/micro/micro/v3/service/config"
|
|
"github.com/micro/micro/v3/service/logger"
|
|
"googlemaps.github.io/maps"
|
|
)
|
|
|
|
func main() {
|
|
// Create service
|
|
srv := service.New(
|
|
service.Name("geocoding"),
|
|
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")
|
|
}
|
|
m, err := maps.NewClient(maps.WithAPIKey(apiKey))
|
|
if err != nil {
|
|
logger.Fatalf("Error configuring google maps client: %v", err)
|
|
}
|
|
|
|
// Register handler
|
|
pb.RegisterGeocodingHandler(srv.Server(), &handler.Geocoding{Maps: m})
|
|
traceCloser := tracing.SetupOpentracing("geocoding")
|
|
defer traceCloser.Close()
|
|
|
|
// Run service
|
|
if err := srv.Run(); err != nil {
|
|
logger.Fatal(err)
|
|
}
|
|
}
|