blob: b625a8196edea1023916686111a2105073d5b3b8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#![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 job;
/// Mingling CI's Resources
pub mod res;
/// Log exporter for CI reports
pub mod reporter;
#[help]
pub fn render_fallback(_: EntryFallback) -> String {
include_str!("../help.txt").to_string()
}
gen_program!();
|