ic-dbms-canister 0.7.1

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
11
12
//! Inspect implementation for the IC DBMS canister.
//!
//! Each DBMS canister must be called by an authorized principal, which must be in the ACL.

use super::assert_caller_is_allowed;

/// Handles an inspect call to the canister.
pub fn inspect() {
    assert_caller_is_allowed();

    ic_cdk::api::accept_message();
}