//! Service layer for business logic
//!
//! This module contains concrete service implementations that encapsulate
//! authentication and user management logic.
pub use MagicLinkService;
pub use OAuthService;
pub use PasskeyService;
pub use PasswordService;
pub use PasswordResetService;
pub use SessionService;
pub use UserService;
pub use ;