0e162fdfeat: bootstrap_owner and login use cases1mo | 1 | |
| 2 | |
| 3 | |
| 4 | |
| 5 | |
c1a35b0feat: claim the instance on first run instead of bootstrapping from config1mo | 6 | pub mod claim; |
0d12f7dfeat: config from env and SQLite pool in app context1mo | 7 | pub mod config; |
0e162fdfeat: bootstrap_owner and login use cases1mo | 8 | pub mod error; |
| 9 | pub mod login; |
26d9828feat: password hashing behind a port1mo | 10 | pub mod port; |
54a0eaffeat: session storage and actor resolution1mo | 11 | pub mod session; |
0d12f7dfeat: config from env and SQLite pool in app context1mo | 12 | |
c1a35b0feat: claim the instance on first run instead of bootstrapping from config1mo | 13 | pub use claim::{OwnerSpec, claim_instance, is_claimed}; |
0d12f7dfeat: config from env and SQLite pool in app context1mo | 14 | pub use config::AppConfig; |
0e162fdfeat: bootstrap_owner and login use cases1mo | 15 | pub use error::{Error, Result}; |
| 16 | pub use login::login; |
54a0eaffeat: session storage and actor resolution1mo | 17 | pub use session::{SESSION_LIFETIME, end_session, record_session, resolve_actor, sweep_expired}; |