add option to set http handlers

This commit is contained in:
Asim Aslam
2018-11-18 16:32:53 +00:00
parent 98bb4a69c2
commit 1d8047a272
3 changed files with 37 additions and 0 deletions

View File

@@ -1,9 +1,11 @@
// Package http returns a http2 transport using net/http
package http
import (
"github.com/micro/go-micro/transport"
)
// NewTransport returns a new http transport using net/http and supporting http2
func NewTransport(opts ...transport.Option) transport.Transport {
return transport.NewTransport(opts...)
}