add grpc support

This commit is contained in:
2025-03-06 17:20:02 -05:00
parent 64ca321c3a
commit ffac524cfc
19 changed files with 1116 additions and 105 deletions

View File

@ -0,0 +1,10 @@
syntax = "proto3";
package ambient.weather;
import "weather/weather.proto";
option go_package = "gitea.libretechconsulting.com/rmcguire/ambient-local-exporter/api/v1alpha1/weather";
service AmbientLocalWeatherService {
rpc GetWeather(GetWeatherRequest) returns (GetWeatherResponse);
}