OpenWeather-gRPC-API/test-client/main.go
2022-09-01 22:51:36 -04:00

24 lines
430 B
Go

package main
import (
"log"
pb "codeberg.org/andcscott/OpenWeatherMap-gRPC-API/proto"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials/insecure"
)
func main() {
conn, err := grpc.Dial("localhost:5000", grpc.WithTransportCredentials(insecure.NewCredentials()))
if err != nil {
log.Fatalln(err)
}
defer conn.Close()
c := pb.NewWeatherServiceClient(conn)
//doCurrent(c)
//doFiveDay(c)
doLocation(c)
}