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

20 lines
266 B
Go

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