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

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

use crate::cli::*;

fn main() {
    cli_entry();
}

gen_program!();