File: term.go

package info (click to toggle)
golang-github-tdewolff-argp 0.0~git20250430.0f54527-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 172 kB
  • sloc: makefile: 3
file content (9 lines) | stat: -rw-r--r-- 131 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
// +build windows

package argp

import "fmt"

func TerminalSize() (int, int, error) {
	return 0, 0, fmt.Errorf("not available")
}