use axum::{
extract::State,
response::Html,
routing::get,
Router,
};
use std::sync::Arc;
use crate::core::shared::state::AppState;
pub async fn handle_sources_list_page(
State(_state): State>,
) -> Html {
let html = r#"
Sources
Sources
Loading sources...
"#;
Html(html.to_string())
}
pub async fn handle_mcp_add_page(
State(_state): State>,
) -> Html {
let html = r#"
Add MCP Server