forge-core 0.10.2

Core types and traits for the Forge framework
Documentation
1
2
3
4
5
6
7
8
9
10
//! Security configuration.

use serde::{Deserialize, Serialize};

/// Security configuration.
#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[non_exhaustive]
pub struct SecurityConfig {
    pub secret_key: Option<String>,
}