nostr_sdk_sqlite/
lib.rs

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