Register compaction module in lib.rs

The compaction.rs module was created and session.rs was updated to use
it in the previous commit, but the module was not registered in lib.rs.
Add `pub mod compaction;` to complete the extraction.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Bryan Helmkamp 2026-02-27 23:45:20 -05:00
parent e8694f08bb
commit b391af7968

View file

@ -2,6 +2,7 @@
pub mod docker_env;
pub mod cli;
pub mod compaction;
pub mod config;
pub mod error;
pub mod event;
@ -18,6 +19,7 @@ pub mod skills;
pub mod provider_profile;
pub mod session;
pub mod subagent;
pub mod tool_execution;
pub mod tool_registry;
pub mod tools;
pub mod truncation;