micro-server-http/handler.go
Vasiliy Tolstov 7e46d86253 update for latest micro
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
2021-01-29 14:32:32 +03:00

29 lines
484 B
Go

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