canic-core 0.69.0

Canic — a canister orchestration and management toolkit for the Internet Computer
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Module: ids::capability
//!
//! Responsibility: canonical capability scope names for delegated auth.
//! Does not own: authorization policy or capability validation.
//! Boundary: exposes broad string constants that consumers may specialize later.

pub const READ: &str = "read";
pub const WRITE: &str = "write";
pub const VERIFY: &str = "verify";
pub const SESSION: &str = "session";
pub const ADMIN: &str = "admin";