shad-go/distbuild/pkg/filecache/handler.go
2022-02-10 22:06:57 +00:00

21 lines
286 B
Go

//go:build !solution
// +build !solution
package filecache
import (
"net/http"
"go.uber.org/zap"
)
type Handler struct {
}
func NewHandler(l *zap.Logger, cache *Cache) *Handler {
panic("implement me")
}
func (h *Handler) Register(mux *http.ServeMux) {
panic("implement me")
}