SESSION_CONFIG_COOKIE_CONFIG

Constant SESSION_CONFIG_COOKIE_CONFIG 

Source
pub const SESSION_CONFIG_COOKIE_CONFIG: Constructor;
Expand description

A handle to add SessionConfig::cookie_config() as a constructor to your Pavex application.

§Example

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

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