nodedb 0.2.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
// SPDX-License-Identifier: BUSL-1.1

pub mod alter;
pub mod create;
pub mod drop;
pub mod show;

pub use alter::alter_alert;
pub use create::{CreateAlertRequest, create_alert};
pub use drop::drop_alert;
pub use show::{show_alert_status, show_alerts};

/// CRDT collection name for alert rule sync between Origin and Lite.
const ALERT_RULES_CRDT_COLLECTION: &str = "_alert_rules";