The smokesignal.events web application

refactor: inconsistent source file names

+2 -2
src/http/handler_mcp.rs src/http/handle_mcp.rs
+1 -1
src/http/mod.rs
··· 68 68 pub mod handle_xrpc_get_rsvp; 69 69 pub mod handle_xrpc_link_attestation; 70 70 pub mod handle_xrpc_search_events; 71 - pub mod handler_mcp; 71 + pub mod handle_mcp; 72 72 pub mod import_utils; 73 73 pub mod lfg_form; 74 74 pub mod location_edit_status;
+1 -1
src/http/server.rs
··· 112 112 handle_xrpc_get_rsvp::handle_xrpc_get_rsvp, 113 113 handle_xrpc_link_attestation::handle_xrpc_link_attestation, 114 114 handle_xrpc_search_events::handle_xrpc_search_events, 115 - handler_mcp::{delete_mcp_authenticated, post_mcp_authenticated}, 115 + handle_mcp::{delete_mcp_authenticated, post_mcp_authenticated}, 116 116 }; 117 117 use crate::http::handle_view_event::{handle_event_attendees, handle_event_ics}; 118 118