From 6051927c8fa32cfffa102d2a170c5a6cf747a1b9 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 9 Aug 2026 11:19:03 +0900 Subject: refactor(symfony-console): extract symfony/console into the shirabe-symfony-console crate Move `Symfony\Component\Console` out of shirabe-external-packages and into its own crate, so the path is `shirabe_symfony_console::application::Application` instead of `shirabe_external_packages::symfony::console::application::Application`. The `delegate_to_inner!` and `delegate_command_trait_impls_to_inner!` macros move with it. Co-Authored-By: Claude Opus 5 (1M context) --- crates/shirabe-symfony-console/src/helper.rs | 33 ++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 crates/shirabe-symfony-console/src/helper.rs (limited to 'crates/shirabe-symfony-console/src/helper.rs') diff --git a/crates/shirabe-symfony-console/src/helper.rs b/crates/shirabe-symfony-console/src/helper.rs new file mode 100644 index 00000000..8aed672f --- /dev/null +++ b/crates/shirabe-symfony-console/src/helper.rs @@ -0,0 +1,33 @@ +pub mod debug_formatter_helper; +pub mod descriptor_helper; +pub mod formatter_helper; +pub mod helper; +pub mod helper_interface; +pub mod helper_set; +pub mod process_helper; +pub mod progress_bar; +pub mod question_helper; +pub mod symfony_question_helper; +pub mod table; +pub mod table_cell; +pub mod table_cell_style; +pub mod table_rows; +pub mod table_separator; +pub mod table_style; + +pub use debug_formatter_helper::*; +pub use descriptor_helper::*; +pub use formatter_helper::*; +pub use helper::*; +pub use helper_interface::*; +pub use helper_set::*; +pub use process_helper::*; +pub use progress_bar::*; +pub use question_helper::*; +pub use symfony_question_helper::*; +pub use table::*; +pub use table_cell::*; +pub use table_cell_style::*; +pub use table_rows::*; +pub use table_separator::*; +pub use table_style::*; -- cgit v1.3.1-4-g156e