summaryrefslogtreecommitdiff
path: root/source/main.rs
blob: a6989216e34f201d702628ad7fefb8d0992092a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2023 Gabriel Jensen.

mod dw;

use crate::dw::app::App;

use std::process::exit;

fn main() {
	let mut app = App::new();

	exit(app.ini() as i32);
}