feat: add TUI client with FIFO communication and status display

This commit is contained in:
Loic Coenen
2026-05-14 17:22:02 +00:00
committed by Loic Coenen (aider)
parent 5341cb676a
commit 971372eac9
19 changed files with 382 additions and 111 deletions

8
client/src/main.c Normal file
View File

@@ -0,0 +1,8 @@
#include "tui.h"
int main(void) {
tui_init();
tui_run();
tui_cleanup();
return 0;
}