OpenWeather-gRPC-API/test-client/location.go

20 lines
357 B
Go
Raw Normal View History

2022-07-26 17:28:33 -04:00
package main
import (
"context"
"log"
pb "codeberg.org/andcscott/OpenWeatherMap-gRPC-API/proto"
)
func doLocation(c pb.WeatherServiceClient) {
res, err := c.Location(context.Background(), &pb.RequestLocation{
City: "Corvallis",
})
if err != nil {
log.Fatalln(err)
}
log.Printf("Latitude: %v, Longitude: %v\n", res.Latitude, res.Longitude)
}