Files
invertergui/vendor/github.com/jessevdk/go-flags/termsize_nosysioctl.go
Nathan Coad a31a0b4829
Some checks failed
build / inverter_gui_pipeline (push) Has been cancelled
Modernize invertergui: MQTT write support, HA integration, UI updates
2026-02-19 12:03:52 +11:00

9 lines
141 B
Go

//go:build plan9 || appengine || wasm || aix
// +build plan9 appengine wasm aix
package flags
func getTerminalColumns() int {
return 80
}