···1uniffi::setup_scaffolding!();
23pub mod c2pa;
04pub mod node_addr;
5pub mod public_key;
067use std::sync::{LazyLock, Once};
8···10pub use db::*;
11#[cfg(test)]
12mod tests;
0001314/// Lazily initialized Tokio runtime for use in uniffi methods that need a runtime.
15static RUNTIME: LazyLock<tokio::runtime::Runtime> =
···1uniffi::setup_scaffolding!();
23pub mod c2pa;
4+pub mod error;
5pub mod node_addr;
6pub mod public_key;
7+pub mod streams;
89use std::sync::{LazyLock, Once};
10···12pub use db::*;
13#[cfg(test)]
14mod tests;
15+16+#[cfg(test)]
17+mod test_stream;
1819/// Lazily initialized Tokio runtime for use in uniffi methods that need a runtime.
20static RUNTIME: LazyLock<tokio::runtime::Runtime> =