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

pub mod alter;
pub mod create;
pub mod drop;
pub mod parse;
pub mod show;
pub mod validate;
pub mod wasm_aggregate;
pub mod wasm_create;

pub use alter::alter_function;
pub use create::create_function;
pub use drop::drop_function;
pub use show::show_functions;
pub use wasm_aggregate::create_wasm_aggregate;
pub use wasm_create::create_wasm_function;