fix(#2377): remove unused submit_init_config re-export from socket_server

submit_init_config is only called within config_approvals.rs itself;
the pub(crate) re-export on mod.rs was unused (clippy unused_imports).
This commit is contained in:
atlas 2026-07-11 11:11:09 +02:00 committed by mara
commit 949fcf2f16

View file

@ -25,7 +25,7 @@ mod lifecycle_handlers;
mod reminders;
mod schedules;
pub(crate) use config_approvals::{submit_init_config, submit_merge_config_pr};
pub(crate) use config_approvals::submit_merge_config_pr;
pub(crate) use schedules::filter_ghost_schedule_targets;
pub use schedules::schedule_to_wire_public;