mirror of
https://github.com/openai/codex.git
synced 2026-05-04 13:21:54 +03:00
Extracting tasks in a module and start abstraction behind a Trait (more to come on this but each task will be tackled in a dedicated PR) The goal was to drop the ActiveTask and to have a (potentially) set of tasks during each turn
10 lines
214 B
Rust
10 lines
214 B
Rust
mod service;
|
|
mod session;
|
|
mod turn;
|
|
|
|
pub(crate) use service::SessionServices;
|
|
pub(crate) use session::SessionState;
|
|
pub(crate) use turn::ActiveTurn;
|
|
pub(crate) use turn::RunningTask;
|
|
pub(crate) use turn::TaskKind;
|