Match lower case (#5763)

Co-authored-by: Douwe Osinga <douwe@squareup.com>
This commit is contained in:
Douwe Osinga
2025-11-17 09:32:24 -05:00
committed by GitHub
parent 8d98a25a15
commit 8185d3a706
+1 -1
View File
@@ -17,7 +17,7 @@ pub async fn run_mcp_server(name: &str) -> Result<()> {
tracing::info!("Starting MCP server");
match name {
match name.to_lowercase().as_str() {
"autovisualiser" => serve_and_wait(AutoVisualiserRouter::new()).await,
"computercontroller" => serve_and_wait(ComputerControllerServer::new()).await,
"developer" => serve_and_wait(DeveloperServer::new()).await,