aboutsummaryrefslogtreecommitdiff
path: root/mling/src/lib.rs
blob: 1bf38a74154d08f8ff828aa036e63363128dacc5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![allow(unused_imports)]

use mingling::{
    macros::{chain, gen_program, pack, r_println, renderer},
    res::ResExitCode,
};

mod cargo_style;
pub use cargo_style::*;

pub mod cli;
pub mod display;
pub mod errors;
pub mod pkg_mgr;
pub mod proj_mgr;
pub mod res;

gen_program!();