aboutsummaryrefslogtreecommitdiff
path: root/mingling_ci/src/lib.rs
blob: 3a3ffff90b357a0bf50e8f80d99071cad7592fa5 (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
#![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;

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

gen_program!();