All checks were successful
Build and Publish / release (push) Successful in 4m42s
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
|
|
}
|