Package mux provides proxy muxing
type Server struct { // name of service Name string // Proxy handler Proxy proxy.Proxy }
Server is a proxy muxer that incudes the use of the DefaultHandler
func New(name string, p proxy.Proxy) *Server
func (s *Server) ProcessMessage(ctx context.Context, msg server.Message) error
func (s *Server) ServeRequest(ctx context.Context, req server.Request, rsp server.Response) error