2022-02-10 22:06:57 +00:00
|
|
|
//go:build !solution
|
2020-04-05 13:24:48 +00:00
|
|
|
// +build !solution
|
|
|
|
|
2020-04-04 16:19:01 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"go.uber.org/zap"
|
|
|
|
)
|
|
|
|
|
|
|
|
type HeartbeatClient struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewHeartbeatClient(l *zap.Logger, endpoint string) *HeartbeatClient {
|
2020-04-05 13:24:48 +00:00
|
|
|
panic("implement me")
|
2020-04-04 16:19:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *HeartbeatClient) Heartbeat(ctx context.Context, req *HeartbeatRequest) (*HeartbeatResponse, error) {
|
2020-04-05 13:24:48 +00:00
|
|
|
panic("implement me")
|
2020-04-04 16:19:01 +00:00
|
|
|
}
|