fips 1.0.1

A powerful mock server supported by a plugin system
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 RuleContainer {
    pub path: Option<String>,
    pub item: Option<Value>,
}