irc bot responsible for recording chat combos in #destinyecho channel and for storing them in a database.
$ go get github.com/BurntSushi/toml
$ go get github.com/thoj/go-ircevent
$ go get github.com/go-sql-driver/mysql
$ go build
- Improve comments
- Improve logging
- Handle errors where possible
- Save records to database in intervals
- If database is unavailable store records in a slice / file to dump later when database is back online
- Provide unit file for systemd
- Ability to update emotes without restarting the app
- Implement commands for controlling the bot
- TOML - Parser and encoder for Go with reflection.
- go-ircevent - Event based IRC client library in Go.
- Go-MySQL-Driver - A MySQL-Driver for Go's database/sql package.