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

20 lines
301 B
Go

// +build !solution
package api
import (
"net/http"
"go.uber.org/zap"
)
type HeartbeatHandler struct {
}
func NewHeartbeatHandler(l *zap.Logger, s HeartbeatService) *HeartbeatHandler {
panic("implement me")
}
func (h *HeartbeatHandler) Register(mux *http.ServeMux) {
panic("implement me")
}