coil-auth 0.1.0

Authorisation models and auth package support for the Coil framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use super::*;

mod access;
mod entity;
mod namespace;
mod relation;
mod subject;
mod tuple;

pub use access::AccessCheck;
pub use entity::Entity;
pub use namespace::Namespace;
pub use relation::Relation;
pub use subject::DefaultSubject;
pub use tuple::{DefaultTuple, DefaultTupleUpdate};