//! Notebook TUI 应用状态与交互。
//!
//! 模块拆分:
//! - `types` — 核心数据类型(NoteItem, FlatEntry, NotebookApp 等)
//! - `io` — 文件 I/O 操作(读写笔记、配置持久化、编辑器调用等)
//! - `flat_entries` — 树形目录扁平化构建
//! - `input` — 各模式按键处理分发
// Re-export 外部模块(handler.rs / ui.rs)实际使用的类型
pub use ;
// Re-export I/O 函数供 handler.rs 使用
pub use ;
// Re-export input 处理函数供 handler.rs 使用
pub use ;