[Feat] Split Daemon & TUI

This commit is contained in:
Alex Emmet 2026-07-20 23:40:33 +02:00
commit 36a70e82a0
35 changed files with 970 additions and 239 deletions

5
iota-ipc/src/lib.rs Normal file
View file

@ -0,0 +1,5 @@
pub mod protocol;
pub mod transport;
pub use protocol::{ClientMessage, DaemonMessage, LogEntry, StateSnapshot};
pub use transport::{read_msg, write_msg};