This repository has been archived on 2021-10-11. You can view files and clone it, but cannot push or open issues or pull requests.
2021-09-20 16:59:40 -04:00

11 lines
164 B
Rust

use game::game_begin;
#[tokio::main]
async fn main() {
// Enable logging
tracing_subscriber::fmt::init();
// Start the game
game_begin().await;
}