remove registry and transport default funcs

This commit is contained in:
Asim Aslam
2018-04-14 18:43:54 +01:00
parent 173f7107e2
commit d00ac200dd
2 changed files with 0 additions and 41 deletions

View File

@@ -50,15 +50,3 @@ var (
func NewTransport(opts ...Option) Transport {
return newHTTPTransport(opts...)
}
func Dial(addr string, opts ...DialOption) (Client, error) {
return DefaultTransport.Dial(addr, opts...)
}
func Listen(addr string, opts ...ListenOption) (Listener, error) {
return DefaultTransport.Listen(addr, opts...)
}
func String() string {
return DefaultTransport.String()
}