SQLITE_SESSION_STORE_NEW

Constant SQLITE_SESSION_STORE_NEW 

Source
pub const SQLITE_SESSION_STORE_NEW: Constructor;
Expand description

A handle to add SqliteSessionStore::new() as a constructor to your Pavex application.

§Example

use pavex::Blueprint;
// [...]
// ^ Import `SQLITE_SESSION_STORE_NEW` here

let mut bp = Blueprint::new();
// Add `SqliteSessionStore::new()` as a constructor to your application.
bp.constructor(SQLITE_SESSION_STORE_NEW);