Files
notify/internal/transport/npipe_other.go
T

17 lines
268 B
Go
Raw Normal View History

//go:build !windows
package transport
import (
"net"
"time"
)
func dialNamedPipe(_ string, _ *time.Duration) (net.Conn, error) {
return nil, ErrNamedPipeUnsupported
}
func listenNamedPipe(_ string) (net.Listener, error) {
return nil, ErrNamedPipeUnsupported
}