Files
go_pwner/pipe_other.go
T
2026-07-18 21:37:15 +03:00

12 lines
187 B
Go

//go:build !windows
package winpwn
func ServePipe(name string) (*Tube, error) {
return nil, errWindowsOnly
}
func DialPipe(name string) (*Tube, error) {
return nil, errWindowsOnly
}