aboutsummaryrefslogtreecommitdiff
path: root/mingling_ci/src/lib.rs
blob: fad8d72fb0c1271d47da9df549bc0b4a889a6775 (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
#![deny(clippy::pedantic)]
#![deny(clippy::nursery)]
#![allow(clippy::redundant_pub_crate)]
#![allow(clippy::missing_const_for_fn)]

use mingling::macros::{gen_program, help};

pub(crate) mod cmd;
pub(crate) mod task;

/// Mingling CI's Resources
pub mod res;

/// Log exporter for CI reports
pub mod reporter;

pub(crate) mod examples;
pub(crate) mod markdown;
pub(crate) mod progress;

#[help]
pub fn render_fallback(_: EntryFallback) -> String {
    include_str!("../help.txt").to_string()
}

gen_program!();