From 8323fdd73272a2882781aba3c499ba0be3dff2a6 Mon Sep 17 00:00:00 2001 From: UMTS at Teleco Date: Sat, 13 Dec 2025 02:51:15 +0100 Subject: committing to insanity --- src/core/mod.rs | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/core/mod.rs (limited to 'src/core/mod.rs') diff --git a/src/core/mod.rs b/src/core/mod.rs new file mode 100644 index 0000000..7911d77 --- /dev/null +++ b/src/core/mod.rs @@ -0,0 +1,26 @@ +// Core business logic and data management + +/// UI components (forms, dialogs, helpers) +pub mod components; +/// Data models and dropdown options +pub mod data; +/// Asset operations and CRUD +pub mod operations; +/// Print system +pub mod print; +/// Table rendering +pub mod table_renderer; +/// Table data management +pub mod tables; +/// Utility functions +pub mod utils; +/// Multi-step workflows +pub mod workflows; + +// Re-exports for convenience +pub use components::stats::*; +pub use components::{EditorField, FieldType, FormBuilder}; +pub use data::*; +pub use operations::*; +pub use table_renderer::*; +pub use tables::*; -- cgit v1.2.3-70-g09d2