Remove dead duplicate dispatcher: crates/hero_proc_server/src/db/rpc.rs (no callers) #130
Labels
No labels
prio_critical
prio_low
type_bug
type_contact
type_issue
type_lead
type_question
type_story
type_task
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
lhumina_code/hero_proc#130
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
What
crates/hero_proc_server/src/db/rpc.rsis a parallel RPC dispatcher module (~700+ LOC) that mirrors much ofcrates/hero_proc_server/src/rpc/mod.rs'sdispatchshape. It'spubbut has no in-tree callers — only its own doc-comment references it.After #124's migration it was async-ified along with the rest of the codebase, doubling the maintenance surface for code that nobody actually uses.
Tasks
grep -r 'db::rpc::' crates/hero_proc_server/src/ crates/hero_proc_sdk/ crates/hero_proc_admin/ crates/hero_proc_examples/.pub mod rpc;line incrates/hero_proc_server/src/db/mod.rs._archive/or behind#[cfg(test)].Scope
~750 LOC deletion if truly dead. Likely a quick win.
References