agent-supplements-rec 0.1.0

Curated supplement recommendation engine for longevity biomarker optimization
1
2
3
4
5
6
7
pub mod json;
pub mod table;

/// Check if stdout is a terminal (TTY)
pub fn is_tty() -> bool {
    std::io::IsTerminal::is_terminal(&std::io::stdout())
}