1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-02-04 18:21:53 +02:00

10 lines
173 B
Go

package http
import (
"github.com/micro/go-micro/transport"
)
func NewTransport(opts ...transport.Option) transport.Transport {
return transport.NewTransport(opts...)
}