data_modelling_sdk/
lib.rs

1//! Data Modelling SDK - Shared library for model operations across platforms
2//!
3//! This crate re-exports everything from `data-modelling-core` for backward compatibility.
4//!
5//! Provides unified interfaces for:
6//! - File/folder operations (via storage backends)
7//! - Model loading/saving
8//! - Import/export functionality
9//! - Validation logic
10//! - Authentication types (shared across web, desktop, mobile)
11//! - Workspace management types
12
13// Re-export everything from core
14pub use data_modelling_core::*;