mirror of
https://github.com/go-micro/go-micro.git
synced 2025-02-04 18:21:53 +02:00
12 lines
213 B
Go
12 lines
213 B
Go
|
package http
|
||
|
|
||
|
// This is a hack
|
||
|
|
||
|
import (
|
||
|
"github.com/myodc/go-micro/transport"
|
||
|
)
|
||
|
|
||
|
func NewTransport(addrs []string, opt ...transport.Option) transport.Transport {
|
||
|
return transport.NewTransport(addrs, opt...)
|
||
|
}
|