canic_core/ids/capability.rs
1//! Canonical capability scope names for delegated auth.
2//!
3//! These constants are intentionally broad so apps/canisters can start with a
4//! simple capability model and specialize later when needed.
5
6pub const READ: &str = "read";
7pub const WRITE: &str = "write";
8pub const VERIFY: &str = "verify";
9pub const ADMIN: &str = "admin";