mirror of
https://codeberg.org/andyscott/OpenWeather-gRPC-API.git
synced 2024-11-05 05:20:48 -05:00
15 lines
318 B
Protocol Buffer
15 lines
318 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package weather;
|
|
|
|
option go_package = "codeberg.org/andcscott/OpenWeatherMap-gRPC-API/proto";
|
|
|
|
enum LocationType {
|
|
LOCATION_TYPE_UNSPECIFIED = 0;
|
|
LOCATION_CITY = 1;
|
|
LOCATION_ZIP = 2;
|
|
LOCATION_COORDS = 3;
|
|
LOCATION_CITY_STATE = 4;
|
|
LOCATION_CITY_COUNTRY = 5;
|
|
LOCATION_ZIP_COUNTRY = 6;
|
|
}
|