aboutsummaryrefslogtreecommitdiff
path: root/mling/src/lib.rs
blob: 0e122f34838d3c66fad6cfc72cca4bf99e9b7bba (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
25
26
27
#![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::*;

mod errors;
pub use errors::*;

use crate::display::markdown;

gen_program!();