From 33f9ed2466e960223389da59a423cc697ff615ba Mon Sep 17 00:00:00 2001 From: Grail Finder Date: Sun, 14 Dec 2025 14:44:24 +0300 Subject: Chore: cleanup --- main.go | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'main.go') diff --git a/main.go b/main.go index 63d0976..ec175bf 100644 --- a/main.go +++ b/main.go @@ -3,7 +3,6 @@ package main import ( "flag" "strconv" - "unicode" "github.com/rivo/tview" ) @@ -23,15 +22,6 @@ var ( focusSwitcher = map[tview.Primitive]tview.Primitive{} ) -func isASCII(s string) bool { - for i := 0; i < len(s); i++ { - if s[i] > unicode.MaxASCII { - return false - } - } - return true -} - func main() { apiPort := flag.Int("port", 0, "port to host api") flag.Parse() -- cgit v1.2.3