diff options
Diffstat (limited to 'crates/shirabe/src/command/clear_cache_command.rs')
| -rw-r--r-- | crates/shirabe/src/command/clear_cache_command.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/shirabe/src/command/clear_cache_command.rs b/crates/shirabe/src/command/clear_cache_command.rs index 4859a46..1ceca69 100644 --- a/crates/shirabe/src/command/clear_cache_command.rs +++ b/crates/shirabe/src/command/clear_cache_command.rs @@ -29,8 +29,8 @@ impl ClearCacheCommand { pub fn execute( &mut self, - _input: &dyn InputInterface, - _output: &dyn OutputInterface, + _input: std::rc::Rc<std::cell::RefCell<dyn InputInterface>>, + _output: std::rc::Rc<std::cell::RefCell<dyn OutputInterface>>, ) -> anyhow::Result<i64> { // TODO(phase-b): port full execute logic once Config sharing model is settled let _ = composer::VERSION; |
