//! Rust-first `OpenApp` SDK — thin re-export of [`openapp_sdk_core`].
//!//! Prefer this crate for Rust applications so version lines stay independent of
//! the internal `openapp-sdk-core` crate while tracking the same wire behavior.
#![deny(rust_2018_idioms, missing_debug_implementations)]#![warn(clippy::pedantic)]#![allow(clippy::module_name_repetitions, clippy::missing_errors_doc)]pubuseopenapp_sdk_core::*;#[cfg(test)]modtests{usecrate::ClientBuilder;#[test]fnreexports_client_builder(){let_=std::any::type_name::<ClientBuilder>();}}