Compare commits

...

2 commits

Author SHA1 Message Date
f2d4fd3067 Merge branch 'feat/cli' of https://git.cscherr.de/PlexSheep/pt into feat/cli
All checks were successful
cargo devel CI / cargo CI (push) Successful in 2m10s
2024-06-28 14:41:04 +02:00
4278f4b5a7 docs(cli): mention IsTerminal in cli::printing 2024-06-28 14:40:50 +02:00

View file

@ -3,6 +3,10 @@
//! This module provides functions for formatting content with borders and colors, printing them to the console.
//! The functions in this module are designed to simplify the process of creating visually appealing
//! output for CLI applications.
//!
//! Note that most of the utilities in this module are focused on communication with humans, not
//! with machines. Consider evaluating [std::io::IsTerminal] before using colorful, dynamic and bordered
//! printing.
use comfy_table::presets;
use comfy_table::{CellAlignment, ContentArrangement, Table};