shad-go/distbuild/pkg/api/heartbeat_client.go
2020-04-05 16:24:48 +03:00

20 lines
346 B
Go

// +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")
}