this_executable_will_self_destruct 0.1.0

crate for "This executable will self destruct"
Documentation
1
2
3
4
5
6
7
use this_executable_will_self_destruct::ThisExecutableWillSelfDestruct;
use std::time::Duration;

fn main() {
    println!("This executable will self-destruct in five seconds");
    ThisExecutableWillSelfDestruct::new(Duration::from_secs(5)).fire();
}