labscript 0.1.0

Prescription PDF generator with e-signature and QR verification
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())
}