mirror of
https://github.com/linka-cloud/grpc.git
synced 2025-11-24 05:03:16 +00:00
12 lines
157 B
Go
12 lines
157 B
Go
//go:build !windows
|
|
|
|
package service
|
|
|
|
import (
|
|
"net"
|
|
)
|
|
|
|
func listen(network, address string) (net.Listener, error) {
|
|
return net.Listen(network, address)
|
|
}
|