implement grpc weather
All checks were successful
Build and Publish / release (push) Successful in 4m42s

This commit is contained in:
2025-03-07 17:24:05 -05:00
parent 74120183ab
commit 8674bb4e01
6 changed files with 49 additions and 2 deletions

View File

@ -0,0 +1,13 @@
package grpc
import (
"context"
pb "gitea.libretechconsulting.com/rmcguire/ambient-local-exporter/api/v1alpha1/weather"
)
// TODO: Implement
type GRPCWeather struct {
ctx context.Context
*pb.UnimplementedAmbientLocalWeatherServiceServer
}