From 297f3709245fb2c78e64d121b24f2ec9f8d14940 Mon Sep 17 00:00:00 2001 From: leandroveronezi Date: Tue, 11 Apr 2023 11:36:28 -0400 Subject: [PATCH] ... --- .gitignore | 2 ++ types_linux.go | 6 +----- 2 files changed, 3 insertions(+), 5 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..27acc17 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/.idea/ +/.history/ diff --git a/types_linux.go b/types_linux.go index 9100ea5..e69bc6d 100644 --- a/types_linux.go +++ b/types_linux.go @@ -1,3 +1,4 @@ +//go:build linux || darwin // +build linux darwin package goTerminal @@ -7,11 +8,6 @@ import ( "os" ) -type Coord struct { - X int - Y int -} - type Attribute int const escape = "\x1b"