Add http server which implements go-micro.Server

This commit is contained in:
Asim
2016-06-30 20:21:57 +01:00
committed by Vasiliy Tolstov
commit a067b0b2e8
7 changed files with 514 additions and 0 deletions

27
handler.go Normal file
View File

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