data-modelling-sdk 2.4.0

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

// Re-export everything from core
pub use data_modelling_core::*;