nodedb 0.2.1

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

//! Backward-compatible re-exports from the split trigger fire modules.
//!
//! This file exists so that existing call sites (`control::trigger::fire::fire_after_insert`)
//! continue to work. New code should import from the specific sub-modules.

pub use super::fire_after::{fire_after_delete, fire_after_insert, fire_after_update, fire_sql};
pub use super::fire_before::{fire_before_delete, fire_before_insert, fire_before_update};
pub use super::fire_instead::{
    InsteadOfResult, fire_instead_of_delete, fire_instead_of_insert, fire_instead_of_update,
};