https://github.com/heppu/irc-bot
IRC bot written in golang
https://github.com/heppu/irc-bot
go irc-bot
Last synced: about 2 months ago
JSON representation
IRC bot written in golang
- Host: GitHub
- URL: https://github.com/heppu/irc-bot
- Owner: heppu
- License: mit
- Created: 2016-05-29T13:01:58.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-06-03T18:37:33.000Z (about 10 years ago)
- Last Synced: 2025-02-23T10:42:59.680Z (over 1 year ago)
- Topics: go, irc-bot
- Language: Go
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# IRC-bot
IRC bot written in Golang which has two modules:
## ops
This module keeps track of how many ops each user has (incremental credentials).
This:
```
/MODE +o heppu
/MODE +o heppu
```
would show that user heppu has ops count of 2.
##### Commands
- !ops - show your ops count
- !ops nick1 nick2 - show ops count for given users
## wanha
This module saves all links posted to channels. It notifies you with an annoying message if you posted a link that someone else has already posted.
## Libraries used
- [boltdb](https://github.com/boltdb/bolt) Key value store written in Go
- [sorcix irc](https://github.com/sorcix/irc) Simple irc library
- [xurls](https://github.com/mvdan/xurls) Url parser
- [jun irc-client](https://github.com/heppu/jun) IRC client, forked from [FSX](https://github.com/FSX/jun)