photon_backend_sqlite/lib.rs
1//! `SQLite` embedded [`StoragePort`](photon_backend::StoragePort) for durable single-process Photon.
2//!
3//! Wire with [`PhotonBuilder::storage_port`](https://docs.rs/uf-photon/latest/photon/struct.PhotonBuilder.html#method.storage_port)
4//! after [`SqliteStoragePort::from_env`](SqliteStoragePort::from_env) or [`SqliteStoragePort::open`](SqliteStoragePort::open).
5
6mod config;
7mod port;
8
9pub use config::{sqlite_path_from_env, PATH_ENV};
10pub use port::SqliteStoragePort;