mirror of
https://github.com/go-micro/go-micro.git
synced 2024-12-24 10:07:04 +02:00
12 lines
311 B
Go
12 lines
311 B
Go
// 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...)
|
|
}
|