initial commit

This commit is contained in:
2026-04-20 21:38:22 +02:00
commit a5c79fb7b5
12 changed files with 821 additions and 0 deletions

14
cli_other.go Normal file
View File

@@ -0,0 +1,14 @@
//go:build !darwin && !linux && !windows
// +build !darwin,!linux,!windows
package cli
import "os"
func GetTerminalInfo(*os.File) TerminalInfo {
return TerminalInfo{Width: 80}
}
func errorStyle(*os.File) { }
func resetStyle(*os.File) { }