diff options
| author | citrons <citrons@mondecitronne.com> | 2025-05-31 17:16:38 -0500 |
|---|---|---|
| committer | citrons <citrons@mondecitronne.com> | 2025-05-31 17:16:57 -0500 |
| commit | b11c892158772f508e494b2726a5d4db1bb74d23 (patch) | |
| tree | 16113353422520259ccc7937e9085a68ac6663a6 /client/main.go | |
| parent | 0a58e68ad438ff43fa5bbecdb8914aa00cab5099 (diff) | |
text input box
Diffstat (limited to 'client/main.go')
| -rw-r--r-- | client/main.go | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/client/main.go b/client/main.go index 1f46a00..4c65752 100644 --- a/client/main.go +++ b/client/main.go @@ -3,10 +3,15 @@ package main import ( "citrons.xyz/talk/tui" "time" + "fmt" + "os" ) func main() { - tui.Start() + err := tui.Start() + if err != nil { + fmt.Fprintln(os.Stderr, "error initializing terminal: ", err) + } app := newApplication("localhost:27508") go app.RunClient() |
