this repo has no description
1pub mod audit; 2pub mod db; 3pub mod scopes; 4 5pub use audit::{DelegationActionType, log_delegation_action}; 6pub use db::{ 7 DelegationGrant, controls_any_accounts, create_delegation, get_accounts_controlled_by, 8 get_delegation, get_delegations_for_account, has_any_controllers, is_delegated_account, 9 revoke_delegation, update_delegation_scopes, 10}; 11pub use scopes::{SCOPE_PRESETS, ScopePreset, intersect_scopes};