Skip to main content

rointe_core/firebase/
mod.rs

1//! Low-level Firebase Realtime Database (RTDB) client.
2//!
3//! - [`rtdb`] — REST client for GET and PATCH operations against the Firebase
4//!   RTDB REST API. This is the only transport layer used by [`crate::RointeClient`].
5//! - [`stream`] — SSE streaming (planned; not yet implemented).
6
7pub mod rtdb;
8pub mod stream;