Skip to content
8 changes: 5 additions & 3 deletions crates/collab/src/rpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -441,15 +441,17 @@ impl Server {
.add_request_handler(forward_read_only_project_request::<proto::GitReset>)
.add_request_handler(forward_read_only_project_request::<proto::GitCheckoutFiles>)
.add_request_handler(forward_mutating_project_request::<proto::SetIndexText>)
.add_request_handler(forward_mutating_project_request::<proto::ToggleBreakpoint>)
.add_message_handler(broadcast_project_message_from_host::<proto::BreakpointsForFile>)
.add_request_handler(forward_mutating_project_request::<proto::OpenCommitMessageBuffer>)
.add_request_handler(forward_mutating_project_request::<proto::GitDiff>)
.add_request_handler(forward_mutating_project_request::<proto::GitCreateBranch>)
.add_request_handler(forward_mutating_project_request::<proto::GitChangeBranch>)
.add_request_handler(forward_mutating_project_request::<proto::CheckForPushedCommits>)
.add_message_handler(broadcast_project_message_from_host::<proto::AdvertiseContexts>)
.add_message_handler(update_context);
.add_message_handler(update_context)
.add_request_handler(forward_mutating_project_request::<proto::ToggleBreakpoint>)
.add_message_handler(broadcast_project_message_from_host::<proto::BreakpointsForFile>)
.add_message_handler(broadcast_project_message_from_host::<proto::DapNewSession>)
.add_message_handler(broadcast_project_message_from_host::<proto::DapSessionUpdated>);

Arc::new(server)
}
Expand Down
Loading