Create a new channel as a copy of main.
Rename main to:
Delete main? This cannot be undone.
use bevy::prelude::*; use crate::race::Race; mod race; fn main() { App::new().add_plugin(Race).run(); }