photon-backend-sqlite 0.1.0

SQLite embedded storage adapter for Photon
Documentation
1
2
3
4
5
6
7
8
9
10
//! `SQLite` embedded [`StoragePort`](photon_backend::StoragePort) for durable single-process Photon.
//!
//! Wire with [`PhotonBuilder::storage_port`](https://docs.rs/uf-photon/latest/photon/struct.PhotonBuilder.html#method.storage_port)
//! after [`SqliteStoragePort::from_env`](SqliteStoragePort::from_env) or [`SqliteStoragePort::open`](SqliteStoragePort::open).

mod config;
mod port;

pub use config::{sqlite_path_from_env, PATH_ENV};
pub use port::SqliteStoragePort;