mirror of
https://codeberg.org/andyscott/OpenWeather-gRPC-API.git
synced 2024-11-04 05:10:48 -05:00
12 lines
219 B
Protocol Buffer
12 lines
219 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package weather;
|
|
|
|
option go_package = "codeberg.org/andcscott/OpenWeatherMap-gRPC-API/proto";
|
|
|
|
enum Units {
|
|
UNITS_UNSPECIFIED = 0;
|
|
UNITS_STANDARD = 1;
|
|
UNITS_METRIC = 2;
|
|
UNITS_IMPERIAL = 3;
|
|
}
|