mirror of
https://github.com/go-micro/go-micro.git
synced 2024-12-18 08:26:38 +02:00
10 lines
173 B
Go
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...)
|
|
}
|