link/
link.rs

1use terminal_link::Link;
2
3fn main() {
4    let link = Link::new("Example", "https://example.org");
5    println!("{}", link);
6}