canic-core 0.27.7

Canic — a canister orchestration and management toolkit for the Internet Computer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use crate::storage::stable::registry::app::{AppRegistry, AppRegistryRecord};

///
/// AppRegistryOps
///

pub struct AppRegistryOps;

impl AppRegistryOps {
    // -------------------------------------------------------------
    // Canonical data access
    // -------------------------------------------------------------

    #[must_use]
    pub fn data() -> AppRegistryRecord {
        AppRegistry::export()
    }
}