Merge branch 'master' of github.com:velour/catbase

* 'master' of github.com:velour/catbase:
  Re-enable counter plugin
This commit is contained in:
Chris Sexton 2016-04-05 09:46:25 -04:00
commit 2180daced9
1 changed files with 2 additions and 0 deletions

View File

@ -11,6 +11,7 @@ import (
"github.com/velour/catbase/irc"
"github.com/velour/catbase/plugins/admin"
"github.com/velour/catbase/plugins/beers"
"github.com/velour/catbase/plugins/counter"
"github.com/velour/catbase/plugins/dice"
"github.com/velour/catbase/plugins/downtime"
"github.com/velour/catbase/plugins/fact"
@ -49,6 +50,7 @@ func main() {
b.AddHandler("beers", beers.New(b))
b.AddHandler("remember", fact.NewRemember(b))
b.AddHandler("your", your.New(b))
b.AddHandler("counter", counter.New(b))
// catches anything left, will always return true
b.AddHandler("factoid", fact.New(b))