mirror of
https://github.com/go-micro/go-micro.git
synced 2025-01-05 10:20:53 +02:00
29 lines
450 B
Go
29 lines
450 B
Go
package http
|
|
|
|
import (
|
|
"go-micro.dev/v4/registry"
|
|
"go-micro.dev/v4/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
|
|
}
|