1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-12-12 08:23:58 +02:00
go-micro/plugins/transport/http/http.go
2021-01-20 21:01:10 +00:00

12 lines
317 B
Go

// Package http returns a http2 transport using net/http
package http
import (
"github.com/asim/go-micro/v3/transport"
)
// NewTransport returns a new http transport using net/http and supporting http2
func NewTransport(opts ...transport.Option) transport.Transport {
return transport.NewHTTPTransport(opts...)
}