mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-10 22:43:37 +00:00
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:
parent
e8694f08bb
commit
b391af7968
1 changed files with 2 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue