The glamourous AI coding agent for your favourite terminal 💘
1//go:build plan9 || js || tinygo 2 3package sock 4 5// plan9/js doesn't declare these constants 6const ( 7 SHUT_RD = 1 << iota 8 SHUT_WR 9 SHUT_RDWR = SHUT_RD | SHUT_WR 10)