shad-go/distbuild/pkg/api/heartbeat_client.go
2022-02-10 22:06:57 +00:00

21 lines
367 B
Go

//go:build !solution
// +build !solution
package api
import (
"context"
"go.uber.org/zap"
)
type HeartbeatClient struct {
}
func NewHeartbeatClient(l *zap.Logger, endpoint string) *HeartbeatClient {
panic("implement me")
}
func (c *HeartbeatClient) Heartbeat(ctx context.Context, req *HeartbeatRequest) (*HeartbeatResponse, error) {
panic("implement me")
}