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 --- .../src/symfony/console/mod.rs | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) (limited to 'crates/shirabe-external-packages/src/symfony/console/mod.rs') diff --git a/crates/shirabe-external-packages/src/symfony/console/mod.rs b/crates/shirabe-external-packages/src/symfony/console/mod.rs index b5b557d..688d21f 100644 --- a/crates/shirabe-external-packages/src/symfony/console/mod.rs +++ b/crates/shirabe-external-packages/src/symfony/console/mod.rs @@ -1,25 +1,39 @@ pub mod application; +pub mod attribute; +pub mod color; pub mod command; +pub mod command_loader; pub mod completion; +pub mod console_events; +pub mod cursor; +pub mod descriptor; +pub mod event; pub mod exception; pub mod formatter; pub mod helper; pub mod input; pub mod output; pub mod question; -pub mod single_command_application; +pub mod signal_registry; pub mod style; pub mod terminal; pub use application::*; +pub use attribute::*; +pub use color::*; pub use command::*; +pub use command_loader::*; pub use completion::*; +pub use console_events::*; +pub use cursor::*; +pub use descriptor::*; +pub use event::*; pub use exception::*; pub use formatter::*; pub use helper::*; pub use input::*; pub use output::*; pub use question::*; -pub use single_command_application::*; +pub use signal_registry::*; pub use style::*; pub use terminal::*; -- cgit v1.3.1