| 3 | // Internal API request structures |
| 4 | #[derive(Debug, Serialize, Deserialize)] |
| 5 | pub struct InternalRequest { |
| 6 | pub method: String, |
| 7 | pub params: InternalParams, |
| 8 | } |
| 9 | |
| 10 | #[derive(Debug, Serialize, Deserialize)] |
| 11 | pub struct InternalParams { |
nothing calls this directly
no outgoing calls
no test coverage detected