aboutsummaryrefslogtreecommitdiff
path: root/src/core/mod.rs
blob: 7911d77fc17e2f573f678a5619751a3f0381a410 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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::*;