lux-core 0.2.1

A terminal-native music CLI replacing lx-music-desktop, powered by Agentic intelligence.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod config;
pub mod error;
pub mod traits;
pub mod types;

#[macro_export]
macro_rules! log_verbose {
    ($($arg:tt)*) => {
        if std::env::var("ALX_VERBOSE").is_ok() {
            eprintln!("\x1b[1;35m[DEBUG]\x1b[0m {}", format!($($arg)*));
        }
    };
}