booter 1.0.2

A simple solution to register and call one-time initialization functions
Documentation
# Booter

![License](https://img.shields.io/badge/license-MIT-green.svg)
[![Cargo](https://img.shields.io/crates/v/booter.svg)](https://crates.io/crates/booter)
[![Documentation](https://docs.rs/booter/badge.svg)](https://docs.rs/booter)

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

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

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