aboutsummaryrefslogtreecommitdiff
path: root/mling/src/main.rs
blob: 799ad4b6ab02b3a94ddd95b61ceb1f56ec4859bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use mingling::macros::gen_program;

pub mod cli;
pub mod display;
pub mod namespace_manager;
pub mod project_installer;
pub mod project_solver;

use crate::cli::*;

fn main() {
    cli_entry();
}

gen_program!();