sea-orm-sync 2.0.0-rc.38

🐚 The sync version of SeaORM
Documentation
#![allow(missing_docs)]

mod engine;
pub use engine::*;

pub mod entity;
pub use entity::user::UserId as RbacUserId;

pub mod context;
pub use context::*;

mod error;
pub use error::Error as RbacError;
use error::*;

pub mod schema;

/// This could be used to denote any permission or any resources.
pub const WILDCARD: &str = "*";

pub use sea_query::audit::{AccessType, SchemaOper};