mirc-rs/readme.md
2022-06-02 13:50:42 -04:00

327 B

mirc-rs

A simple mirc color code formatter partially inspired by yansi

Usage

use mirc::Color;

irc.send_privmsg("#channel", Color::red("red text"));
irc.send_privmsg("#channel", format!("Hello: {}", Color::blue("nick")));

Works on any type that impl's fmt::Display