ic-dbms-canister 0.9.0

A framework to build Database canisters on the Internet Computer using DBMS, by just providing the schema.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Inspect implementation for the IC DBMS canister.
//!
//! With granular ACL the per-call body returns `AccessDenied` for
//! unauthorized requests, so inspect-message accepts every call and lets
//! the body do the real work.

/// Handles an inspect call to the canister.
pub fn inspect() {
    ic_cdk::api::accept_message();
}