kelpsget 0.1.2

A modern, lightweight wget clone written in Rust for fast and reliable file downloads from the command line.
1
2
3
4
5
6
7
8
9
10
11
/// Imprime uma mensagem no console, a menos que o modo silencioso esteja ativado.
/// 
/// # Arguments
/// 
/// * `msg` - A mensagem a ser impressa
/// * `quiet_mode` - Se true, suprime a impressão da mensagem
pub fn print(msg: &str, quiet_mode: bool) {
    if !quiet_mode {
        println!("{}", msg);
    }
}