diff options
| author | Paul Buetow <paul@buetow.org> | 2024-06-17 09:29:40 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2024-06-17 09:29:40 +0300 |
| commit | 2f353f6d9aee9d9a989d11757289c11679752789 (patch) | |
| tree | 68ff89aa37c661ad6de00c3774ce45b31591a4e0 /cmd | |
| parent | 4867c040ffddfc18b235e1950f44870c99acf096 (diff) | |
initial TUI for the client
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/gos/main.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/gos/main.go b/cmd/gos/main.go index 2f2ac89..a313b6f 100644 --- a/cmd/gos/main.go +++ b/cmd/gos/main.go @@ -4,6 +4,7 @@ import ( "flag" "log" + "codeberg.org/snonux/gos/internal/client/tui" config "codeberg.org/snonux/gos/internal/config/client" ) @@ -15,5 +16,5 @@ func main() { log.Fatal("error building config:", err) } - log.Println(conf) + tui.Run(conf) } |
