12 lines
366 B
Rust
12 lines
366 B
Rust
//! The DNA-abacus example, connecting to a separately-running viewer over gRPC.
|
|
|
|
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|
// Connect to the viewer running at the default URL.
|
|
let _rec = rerun::RecordingStreamBuilder::new("rerun_example_dna_abacus")
|
|
.connect_grpc()?;
|
|
|
|
// … log data as in the spawn-based example …
|
|
|
|
Ok(())
|
|
}
|