2022-06-02 13:50:42 -04:00
|
|
|
# mirc-rs
|
|
|
|
|
|
|
|
A simple mirc color code formatter partially inspired by [yansi](https://github.com/SergioBenitez/yansi)
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
```rust
|
2022-06-02 14:03:31 -04:00
|
|
|
use mirc::Paint;
|
2022-06-02 13:50:42 -04:00
|
|
|
|
2022-06-02 14:03:31 -04:00
|
|
|
irc.send_privmsg("#channel", Paint::red("red text"));
|
|
|
|
irc.send_privmsg("#channel", format!("Hello: {}", Paint::blue("nick")));
|
2022-06-02 13:50:42 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
Works on any type that impl's fmt::Display
|