celerix_store/sdk/
mod.rs

1/// Software Development Kit (SDK) for Celerix Store.
2/// 
3/// This module provides a high-level API for interacting with the store, including
4/// automatic mode discovery and a remote TCP client.
5pub mod client;
6/// Automatic mode discovery and store initialization.
7pub mod discovery;
8
9pub use client::Client;
10pub use discovery::new;