返回 DeepSeek-TUI-2026
mod.rs
根目录 / crates / tui / src / core / mod.rs
1 //! Core engine module for `DeepSeek` CLI.
2 //!
3 //! This module provides the event-driven architecture that separates
4 //! the UI from the AI interaction logic:
5 //!
6 //! - `engine`: The main engine that processes operations
7 //! - `events`: Events emitted by the engine to the UI
8 //! - `ops`: Operations submitted by the UI to the engine
9 //! - `session`: Session state management
10 //! - `turn`: Turn context and tracking
11
12 pub mod capacity;
13 pub mod capacity_memory;
14 pub mod coherence;
15 pub mod engine;
16 pub mod events;
17 pub mod ops;
18 pub mod session;
19 pub mod tool_parser;
20 pub mod turn;
21
22 // Re-exports
23
23 lines RUST