8 lines
188 B
Go
8 lines
188 B
Go
//go:build !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !solaris
|
|
|
|
package cli
|
|
|
|
func queryTerminalBackground() (terminalRGB, bool) {
|
|
return terminalRGB{}, false
|
|
}
|