fix: Fix command component module structure for publishing

This commit is contained in:
Peter Hanssens
2025-09-23 08:09:29 +10:00
parent d1905d70d8
commit 0ba8e1ec1a
2 changed files with 3 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
// Default Command components
// These components provide the standard Command functionality
pub mod default_components;
pub use crate::default_components::*;

View File

@@ -10,6 +10,8 @@ mod new_york;
#[cfg(not(feature = "new_york"))]
mod default;
pub mod default_components;
mod tests;
mod tdd_tests;