//! SQL-backed [`SessionService`](crate::core::SessionService) over `sqlx`.
//!
//! Features:
//! * `sqlite` — file or in-memory SQLite.
//! * `postgres` — PostgreSQL via `postgres://` URLs.
//!
//! If both backend features are enabled, both concrete aliases are exported
//! and the compatibility `SqlSessionService` alias points at SQLite. Schema
//! lives under `migrations/`.
pub use SqlSessionService as PostgresSessionService;
pub use SqlSessionService as SqliteSessionService;
pub use SqlSessionService;
pub use SqlSessionService;