rmap/frontends/
mcp.rs

1pub struct McpFrontend {}
2
3impl McpFrontend {
4    pub fn new() -> Self {
5        Self {}
6    }
7
8    pub async fn handle_request(
9        &self,
10        _request: &str,
11    ) -> Result<String, Box<dyn std::error::Error>> {
12        todo!("MCP frontend not yet implemented")
13    }
14}
15
16impl Default for McpFrontend {
17    fn default() -> Self {
18        Self::new()
19    }
20}