//! `mnm-store` — Postgres + pgvector storage for midnight-manual.
//!
//! Schema lives in `crates/mnm-store/migrations/`; typed entity APIs in
//! [`entities`]; the `PgPool` builder and `sqlx::migrate!()` runner in
//! [`pool`]. Errors are mapped through [`error::StoreError`] so callers don't
//! depend on sqlx internals.
//!
//! See the data-model schema reference for schema details.
pub use ;
pub use ;
/// Crate version stamped at build time.
pub const VERSION: &str = env!;
/// Shared seeding helpers for DB integration tests (`#[sqlx::test]` and
/// `--features integration` suites).
///
/// Gated so this code is never compiled into production builds.