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

20 lines
265 B
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")
}