scud_core 0.13.0

Core library of scud
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use colored::Colorize;

pub fn log_healthcheck_note() {
    const VERSION: &str = env!("CARGO_PKG_VERSION");

    println!(
        "{}{}{}\n{}\n",
        "Scud v"
            .yellow(),
        VERSION
            .yellow(),
        " healthcheck"
            .yellow(),
        "This command is intended to ensure that the system is setup for usage with the various features of scud."
            .italic()
    );
}