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

21 lines
297 B
Go

//go:build !solution
// +build !solution
package api
import (
"net/http"
"go.uber.org/zap"
)
func NewBuildService(l *zap.Logger, s Service) *BuildHandler {
panic("implement me")
}
type BuildHandler struct {
}
func (h *BuildHandler) Register(mux *http.ServeMux) {
panic("implement me")
}