shad-go/distbuild/pkg/filecache/handler.go

21 lines
266 B
Go
Raw Normal View History

2022-02-10 22:06:57 +00:00
//go:build !solution
2020-04-05 13:24:48 +00:00
2020-04-04 18:45:29 +00:00
package filecache
import (
"net/http"
"go.uber.org/zap"
)
type Handler struct {
}
func NewHandler(l *zap.Logger, cache *Cache) *Handler {
2020-04-05 13:24:48 +00:00
panic("implement me")
2020-04-04 18:45:29 +00:00
}
func (h *Handler) Register(mux *http.ServeMux) {
2020-04-05 13:24:48 +00:00
panic("implement me")
2020-04-04 18:45:29 +00:00
}