OpenWeather-gRPC-API/proto/units.proto

13 lines
219 B
Protocol Buffer
Raw Normal View History

2022-07-26 03:42:19 -04:00
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;
}