nodedb 0.3.0

Local-first, real-time, edge-to-cloud hybrid database for multi-modal workloads
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SPDX-License-Identifier: BUSL-1.1

//! Point operation handlers: PointGet, PointPut, PointDelete, PointUpdate,
//! plus the shared `apply_point_put` transaction helper.
//!
//! Each handler is a method on `CoreLoop`; files here contribute `impl CoreLoop`
//! blocks that share the same type. Dispatch sees them via the normal method
//! lookup — no re-export needed.

pub mod apply_put;
pub mod delete;
pub mod get;
pub mod insert;
pub mod put;
pub mod update;