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