fips_configuration 0.1.0

FIPS Configuration, used to configure the FIPS server
Documentation
1
2
3
4
5
6
7
8
9
use serde::{Deserialize, Serialize};
use serde_json::Value;
use schemars::JsonSchema;

#[derive(Serialize, Deserialize, Debug, Clone, JsonSchema)]
pub struct Rule {
    pub path: Option<String>,
    pub item: Option<Value>,
}