An open API service indexing awesome lists of open source software.

https://github.com/sug0/go-irccol

Simple package to provide mIRC color formatting functionality for your IRC bots
https://github.com/sug0/go-irccol

bots colors fmt format go irc mirc

Last synced: about 1 year ago
JSON representation

Simple package to provide mIRC color formatting functionality for your IRC bots

Awesome Lists containing this project

README

          

# Documentation/reference

Find it at [godoc](https://godoc.org/github.com/sugoiuguu/go-irccol).

# Example usage

```go
// import col "github.com/sugoiuguu/go-irccol"
msg := col.F("Hello world!").Attr(col.Bold).Fg(col.Red).String()
irc.Send("#bots", msg)
```