// SQLite-backed durable storage for the core. One database file
// (`core.sqlite3`) per app install lives under `data_dir/`. The
// connection is owned by `AppCore` (or by a one-shot helper for the
// notification-preview path) and shared with `SqliteStorageAdapter`,
// which implements the `nostr_double_ratchet::StorageAdapter` trait.
// Legacy JSON NDR state is imported into this table on account startup
// when it belongs to the same owner key.
pub use ;
pub use import_legacy_ndr_storage;
pub use SqliteStorageAdapter;
pub use ;
use ;
pub type SharedConnection = ;