micro-server-http/handler.go
2020-10-09 18:12:47 +03:00

29 lines
470 B
Go

package http
import (
"github.com/micro/go-micro/registry"
"github.com/micro/go-micro/server"
)
type httpHandler struct {
opts server.HandlerOptions
eps []*registry.Endpoint
hd interface{}
}
func (h *httpHandler) Name() string {
return "handler"
}
func (h *httpHandler) Handler() interface{} {
return h.hd
}
func (h *httpHandler) Endpoints() []*registry.Endpoint {
return h.eps
}
func (h *httpHandler) Options() server.HandlerOptions {
return h.opts
}