mirror of
https://codeberg.org/andyscott/OpenWeather-gRPC-API.git
synced 2024-11-05 05:20:48 -05:00
20 lines
436 B
Protocol Buffer
20 lines
436 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package weather;
|
||
|
|
||
|
option go_package = "codeberg.org/andcscott/OpenWeatherMap-gRPC-API/proto";
|
||
|
|
||
|
message RequestCurrent {
|
||
|
oneof location {
|
||
|
string city = 1;
|
||
|
string zip_code = 2;
|
||
|
string coords = 3; // Comma separated coordinates, e.g. "44.5,-123.3"
|
||
|
}
|
||
|
optional string state = 4; // US Only
|
||
|
optional string country = 5; // Must be ISO 3166 country code
|
||
|
}
|
||
|
|
||
|
message SendCurrent {
|
||
|
string payload = 1;
|
||
|
}
|