| 57 | |
| 58 | #[derive(Debug, Serialize, Deserialize)] |
| 59 | pub struct UserState { |
| 60 | #[serde(rename = "currentlyVisibleFiles")] |
| 61 | pub currently_visible_files: Vec<String>, |
| 62 | #[serde(rename = "runningTerminalCommands")] |
| 63 | pub running_terminal_commands: Vec<String>, |
| 64 | } |
| 65 | |
| 66 | #[derive(Debug, Serialize, Deserialize)] |
| 67 | pub struct MessageMeta { |
nothing calls this directly
no outgoing calls
no test coverage detected