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

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