@@ -0,0 +1,5 @@
+mod:
+ clear
+ go mod tidy -compat=1.23.3
+ go mod vendor
+ go fmt ./...
@@ -10,7 +10,7 @@ BSD2 Clause
## OS
-Windows, Linux, *BSD -- all platgforms with standart ANSI-terminal
+Windows, Linux, *BSD -- all platforms with simple ANSI-terminal
## Что это такое
@@ -0,0 +1,12 @@
+// package main -- демонстрация работы с экраном
+package main
+
+import (
+ "git.p78su.freemail.ru/go/libtui"
+)
+func main() {
+ libtui.Init()
+ defer libtui.Close()
+ libtui.Clear()
+}
@@ -0,0 +1,3 @@
+module git.p78su.freemyip.com/svi/libtui
+go 1.23.3