mirror of
https://codeberg.org/andyscott/OpenWeather-gRPC-API.git
synced 2024-11-04 05:10:48 -05:00
19 lines
436 B
Protocol Buffer
19 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;
|
|
}
|