steid

@jamesgill /

1//! The application layer: use cases and the ports they depend on.
2//!
3//! Every use case takes an actor or a credential plus the ports it needs, and enforces
4//! the rules before any side effect. Nothing here knows about HTTP or Topcoat.
5
6pub mod claim;
7pub mod config;
8pub mod error;
9pub mod login;
10pub mod port;
11pub mod session;
12
13pub use claim::{OwnerSpec, claim_instance, is_claimed};
14pub use config::AppConfig;
15pub use error::{Error, Result};
16pub use login::login;
17pub use session::{SESSION_LIFETIME, end_session, record_session, resolve_actor, sweep_expired};