nodedb 0.4.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

//! Protocol-neutral introspection DDL family: SHOW USERS / SHOW ROLES /
//! SHOW SESSION, SHOW TENANTS / SHOW TENANT <ident> / SHOW TENANTS WITH
//! NAME, SHOW GRANTS / SHOW PERMISSIONS.

mod grants;
mod support;
mod tenants;
mod users;

pub use grants::{show_grants, show_permissions};
pub use tenants::{show_tenant_by_identifier, show_tenants, show_tenants_filtered_by_name};
pub use users::{show_roles, show_session, show_users};