1 2 3 4 5 6 7 8 9 10 11 12
// Copyright (c) 2022-2023 Yuki Kishimoto // Distributed under the MIT software license #![warn(missing_docs)] #![doc = include_str!("../README.md")] //! SQLite for Nostr SDK mod migration; pub mod store; pub use self::store::{Error, Store};