Booter

License Cargo Documentation

This crate allows a simple means to register FnOnce functions to be called on boot

```rust booter::callonboot!({ println!("Hello World!"); });

fn main() { booter::boot(); booter::assert_booted(); } ```