syntax = "proto3"; package weather; option go_package = "codeberg.org/andcscott/OpenWeatherMap-gRPC-API/proto"; import "weather.proto"; import "location.proto"; service WeatherService { rpc Current(RequestCurrent) returns (SendCurrent); rpc Extended(RequestExtended) returns (SendExtended); rpc Location(RequestLocation) returns (SendLocation); }