nodedb-client 0.2.0

Unified NodeDb trait and remote client for NodeDB Origin and Lite
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: Apache-2.0

//! `NodeDbRemote` — pgwire client that translates `NodeDb` trait calls
//! into SQL/DSL and sends them to the NodeDB Origin.
//!
//! Split into per-concern files: connection lifecycle and trait impl in
//! `client`, SQL/param translation seams in `sql`, JSON response parsing
//! in `parse`. Each file holds the unit tests for the code it owns.

pub mod client;
mod parse;
mod sql;

pub use client::NodeDbRemote;