shad-go/distbuild/pkg/api/build_handler.go

22 lines
297 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
// +build !solution
2020-03-29 16:03:07 +00:00
package api
import (
"net/http"
"go.uber.org/zap"
)
2020-04-04 21:13:45 +00:00
func NewBuildService(l *zap.Logger, s Service) *BuildHandler {
2020-04-05 13:24:48 +00:00
panic("implement me")
2020-03-29 16:03:07 +00:00
}
2020-04-04 21:13:45 +00:00
type BuildHandler struct {
2020-03-29 16:03:07 +00:00
}
2020-04-04 21:13:45 +00:00
func (h *BuildHandler) Register(mux *http.ServeMux) {
2020-04-05 13:24:48 +00:00
panic("implement me")
2020-03-29 16:03:07 +00:00
}