chainmailer 0.2.1

If You Do Not Send This Letter To Ten Recipients You Will Regret It
Documentation
1
2
3
4
5
6
7
8
9
10
11
// Support configuring Bevy lints within code.
#![cfg_attr(bevy_lint, feature(register_tool), register_tool(bevy))]
// Disable console on Windows for non-dev builds.
#![cfg_attr(not(feature = "dev"), windows_subsystem = "windows")]

use bevy::app::{App, AppExit};
use chainmailer::AppPlugin;

fn main() -> AppExit {
    App::new().add_plugins(AppPlugin).run()
}