File: term.go

package info (click to toggle)
golang-github-tdewolff-argp 0.0~git20240625.87b04d5-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 152 kB
  • sloc: makefile: 2
file content (9 lines) | stat: -rw-r--r-- 131 bytes parent folder | download
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")
}