The glamourous AI coding agent for your favourite terminal 💘
1//go:build !windows 2// +build !windows 3 4package client 5 6import ( 7 "context" 8 "net" 9 "syscall" 10) 11 12func dialPipeContext(context.Context, string) (net.Conn, error) { 13 return nil, syscall.EAFNOSUPPORT 14}