v0.1.7 backend fixes, go and dependency updates

This commit is contained in:
2026-09-08 19:58:14 -04:00
parent c246f38170
commit ea9a20c5de
6 changed files with 30 additions and 10 deletions
+10
View File
@@ -0,0 +1,10 @@
//go:build darwin || dragonfly || freebsd || netbsd || openbsd
package terminal
import "golang.org/x/sys/unix"
const (
tcgets = unix.TIOCGETA
tcsets = unix.TIOCSETA
)