| 5 | |
| 6 | #[derive(Debug, Serialize, Deserialize, Clone, PartialEq)] |
| 7 | pub struct RouteObject { |
| 8 | pub is_route_dynamic: String, |
| 9 | pub method: String, |
| 10 | pub request_body: serde_json::Value, |
| 11 | pub response: serde_json::Value, |
| 12 | pub route: String, |
| 13 | } |
| 14 | |
| 15 | #[derive(Debug, Serialize, Deserialize, Clone, Copy, PartialEq)] |
| 16 | pub struct ProjectScope { |
nothing calls this directly
no outgoing calls
no test coverage detected