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