shad-go/distbuild/pkg/api/heartbeat_handler.go
2022-03-15 23:49:56 +03:00

20 lines
302 B
Go

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