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

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

pub mod cli;
pub use cli::*;

mod cargo_style;
pub use cargo_style::*;
pub mod display;
pub mod res;

mod pkg_mgr;
pub use pkg_mgr::*;

mod proj_mgr;
pub use proj_mgr::*;

use crate::display::markdown;

gen_program!();