//! Default auth controllers shipped with `doido-auth`.
//!
//! Apps can point `auth_routes!(User)` at these types directly, or supply custom
//! controllers via `controllers:` / `actions:` options (Devise-style). Generated
//! apps from `auth:install` emit project-local controllers under
//! `app/controllers/auth/` that mirror these defaults and can be extended.
pub use AuthOauth;
pub use AuthPasswords;
pub use AuthRegistrations;
pub use AuthSessions;
pub use AuthTwoFactor;