diff options
| author | Grail Finder <wohilas@gmail.com> | 2025-12-14 14:44:24 +0300 |
|---|---|---|
| committer | Grail Finder <wohilas@gmail.com> | 2025-12-14 14:44:24 +0300 |
| commit | 33f9ed2466e960223389da59a423cc697ff615ba (patch) | |
| tree | 149105a4c68d5d4640365110856659d6e18b98b3 /main.go | |
| parent | edbacb813bd148db33d8747ada293ef2acabe7e9 (diff) | |
Chore: cleanup
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -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() |
