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

20 lines
277 B
Go

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