21 lines
322 B
Go
21 lines
322 B
Go
//go:build !solution
|
|
// +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")
|
|
}
|