shad-go/distbuild/pkg/api/heartbeat_handler.go

21 lines
301 B
Go
Raw Normal View History

2020-04-05 13:24:48 +00:00
// +build !solution
2020-04-04 16:19:01 +00:00
package api
import (
"net/http"
"go.uber.org/zap"
)
type HeartbeatHandler struct {
}
func NewHeartbeatHandler(l *zap.Logger, s HeartbeatService) *HeartbeatHandler {
2020-04-05 13:24:48 +00:00
panic("implement me")
2020-04-04 16:19:01 +00:00
}
func (h *HeartbeatHandler) Register(mux *http.ServeMux) {
2020-04-05 13:24:48 +00:00
panic("implement me")
2020-04-04 16:19:01 +00:00
}