this repo has no description
1mod definitions; 2mod error; 3mod parser; 4mod permissions; 5 6pub use definitions::{SCOPE_DEFINITIONS, ScopeCategory, ScopeDefinition}; 7pub use error::ScopeError; 8pub use parser::{ 9 AccountAction, AccountAttr, AccountScope, BlobScope, IdentityAttr, IdentityScope, IncludeScope, 10 ParsedScope, RepoAction, RepoScope, RpcScope, parse_scope, parse_scope_string, 11}; 12pub use permissions::ScopePermissions;