Libraries to help with IRC development in Go. Mirror/fork of https://github.com/ergochat/irc-go https://github.com/ergochat/irc-go
irc
Go to file
2016-01-18 17:13:25 +10:00
eventmgr eventmgr: Export things that we should be exporting 2016-01-18 17:13:25 +10:00
ircfmt ircfmt: Beta 2016-01-18 14:20:11 +10:00
ircmsg ircmsg: Make sure we fail at right places 2016-01-18 17:04:34 +10:00
.gitignore Add gitignore 2016-01-17 09:30:46 +10:00
.travis.yml travis: Cover all submodules 2016-01-17 18:47:34 +10:00
doc.go Add more docs 2016-01-18 14:18:38 +10:00
LICENSE Initial commit 2016-01-17 02:45:59 +10:00
README.md readme: Put build/coverage higher 2016-01-18 16:58:02 +10:00

gIRC-go

This is a bunch of self-contained packages that help with IRC development in Go. The package splits themselves are fairly similar to how things are split up in the original Python version.


Build Status Coverage Status


I'm aiming for this to become a client library all of its own. The best path to that is writing a bunch of useful, testable, self-contained packages that I'm able to wire together!

These packages are still in their early stages. Specifically, they're probably not as well-optimised as we'd like.

An example bot that uses these packages can be found here.

Packages:

  • eventmgr: Event attaching and dispatching.
  • ircfmt: IRC format codes handling, escaping and unescaping.
  • ircmsg: IRC message handling, raw line parsing and creation.