summaryrefslogtreecommitdiff
path: root/testutil/request/npipe.go
blob: e827ad6b80060a4bd9a7ca92d125ff93e622ce9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//go:build !windows
// +build !windows

package request

import (
	"net"
	"time"
)

func npipeDial(path string, timeout time.Duration) (net.Conn, error) {
	panic("npipe protocol only supported on Windows")
}