reactive_graph_runtime_web_api/
web_resource_path.rs

1use serde::Deserialize;
2
3#[derive(Deserialize)]
4pub struct WebResourcePathInfo {
5    pub web_resource_context_path: String,
6    pub path: String,
7}
8
9#[derive(Deserialize)]
10pub struct RootPathInfo {
11    pub path: String,
12}