14 lines
246 B
Go
14 lines
246 B
Go
|
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
|
||
|
}
|