From a7ba9cac5f0fb0c5cf3befc61d2624d0a51bd2ad Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 17 May 2026 16:17:20 +0900 Subject: fix(compile): add stubs for missing trait implementations --- crates/shirabe/src/command/home_command.rs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'crates/shirabe/src/command/home_command.rs') diff --git a/crates/shirabe/src/command/home_command.rs b/crates/shirabe/src/command/home_command.rs index dd8a81c..b548a2d 100644 --- a/crates/shirabe/src/command/home_command.rs +++ b/crates/shirabe/src/command/home_command.rs @@ -26,7 +26,15 @@ pub struct HomeCommand { io: Option>, } -impl CompletionTrait for HomeCommand {} +impl CompletionTrait for HomeCommand { + fn require_composer( + &self, + disable_plugins: Option, + disable_scripts: Option, + ) -> Composer { + todo!() + } +} impl HomeCommand { pub fn configure(&mut self) { -- cgit v1.3.1