Update test client for changes to server

This commit is contained in:
Andrew Scott 2022-09-02 22:52:40 -04:00
parent 51c183116e
commit 1eb36697f0
Signed by: a
GPG key ID: 3EB62D0BBB8DB381
2 changed files with 3 additions and 3 deletions

View file

@ -13,7 +13,7 @@ func doLocation(c pb.WeatherServiceClient) {
LocationType: pb.LocationType_LOCATION_TYPE_CITY,
Location: &pb.OneOfLocation{
LocationId: &pb.OneOfLocation_City{
City: "Corvallis",
City: "Seattle",
},
},
})

View file

@ -18,7 +18,7 @@ func main() {
c := pb.NewWeatherServiceClient(conn)
//doCurrent(c)
doCurrent(c)
//doFiveDay(c)
doLocation(c)
//doLocation(c)
}