mirror of
https://codeberg.org/andyscott/OpenWeather-gRPC-API.git
synced 2024-11-09 06:00:49 -05:00
14 lines
307 B
Protocol Buffer
14 lines
307 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package weather;
|
||
|
|
||
|
option go_package = "codeberg.org/andcscott/OpenWeatherMap-gRPC-API/proto";
|
||
|
|
||
|
import "current.proto";
|
||
|
import "extended.proto";
|
||
|
|
||
|
service WeatherService {
|
||
|
rpc Current(RequestCurrent) returns (SendCurrent);
|
||
|
rpc Extended(RequestExtended) returns (SendExtended);
|
||
|
}
|