mirror of
https://github.com/go-micro/go-micro.git
synced 2025-03-29 20:39:48 +02:00
29 lines
476 B
Go
29 lines
476 B
Go
|
package http
|
||
|
|
||
|
import (
|
||
|
"github.com/micro/go-micro/v2/registry"
|
||
|
"github.com/micro/go-micro/v2/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
|
||
|
}
|