Move platform-specific signal handling code out of main.rs
#1383
Labels
type: tech debt
A code change that does not add user value.
main.rs
#1383
After Windows support was added, the
main.rs
started to contain a lot of duplicated code for handling interruption signals oncfg(unix)
andcfg(windows)
. We need to factor it out by putting it to a separate source file or even a new crate inlib
. See #1219 (comment) for details.The text was updated successfully, but these errors were encountered: