From 1e44f5723e4c0e0903d00a61f254901e612fe5e1 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Fri, 12 Jun 2026 01:01:35 +0900 Subject: feat(symfony-console): port Symfony Console and make the workspace compile Co-Authored-By: Claude Opus 4.8 --- .../symfony/console/single_command_application.rs | 33 ---------------------- 1 file changed, 33 deletions(-) delete mode 100644 crates/shirabe-external-packages/src/symfony/console/single_command_application.rs (limited to 'crates/shirabe-external-packages/src/symfony/console/single_command_application.rs') diff --git a/crates/shirabe-external-packages/src/symfony/console/single_command_application.rs b/crates/shirabe-external-packages/src/symfony/console/single_command_application.rs deleted file mode 100644 index 9273477..0000000 --- a/crates/shirabe-external-packages/src/symfony/console/single_command_application.rs +++ /dev/null @@ -1,33 +0,0 @@ -#[derive(Debug)] -pub struct SingleCommandApplication; - -impl Default for SingleCommandApplication { - fn default() -> Self { - Self::new() - } -} - -impl SingleCommandApplication { - pub fn new() -> Self { - todo!() - } - - pub fn set_name(&mut self, _name: &str) -> &mut Self { - todo!() - } - - pub fn set_version(&mut self, _version: &str) -> &mut Self { - todo!() - } - - pub fn set_code( - &mut self, - _code: Box i64>, - ) -> &mut Self { - todo!() - } - - pub fn run(&mut self) -> anyhow::Result { - todo!() - } -} -- cgit v1.3.1