diff options
| author | UMTS at Teleco <crt@teleco.ch> | 2025-12-13 02:51:15 +0100 |
|---|---|---|
| committer | UMTS at Teleco <crt@teleco.ch> | 2025-12-13 02:51:15 +0100 |
| commit | 8323fdd73272a2882781aba3c499ba0be3dff2a6 (patch) | |
| tree | ffbf86473933e69cfaeef30d5c6ea7e5b494856c /src/core/mod.rs | |
Diffstat (limited to 'src/core/mod.rs')
| -rw-r--r-- | src/core/mod.rs | 26 |
1 files changed, 26 insertions, 0 deletions
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::*; |
