ankurah-storage-sqlite 0.8.0

Ankurah storage engine using SQLite
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Basic SQLite storage example

use ankurah_storage_sqlite::SqliteStorageEngine;

#[allow(dead_code)]
async fn example() -> anyhow::Result<()> {
    // liaison id=storage-sqlite
    let storage = SqliteStorageEngine::open("myapp.db").await?;
    // liaison end

    let _ = storage;
    Ok(())
}

fn main() {}