From 1a420c173882401e5bff390d78681713bc021793 Mon Sep 17 00:00:00 2001 From: Chris Sexton Date: Thu, 16 Nov 2017 17:06:48 -0500 Subject: [PATCH] tell: create tell plugin --- main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.go b/main.go index 4c34c8d..027a60d 100644 --- a/main.go +++ b/main.go @@ -26,6 +26,7 @@ import ( "github.com/velour/catbase/plugins/sisyphus" "github.com/velour/catbase/plugins/stats" "github.com/velour/catbase/plugins/talker" + "github.com/velour/catbase/plugins/tell" "github.com/velour/catbase/plugins/twitch" "github.com/velour/catbase/plugins/your" "github.com/velour/catbase/plugins/zork" @@ -73,6 +74,7 @@ func main() { b.AddHandler("inventory", inventory.New(b)) b.AddHandler("rpgORdie", rpgORdie.New(b)) b.AddHandler("sisyphus", sisyphus.New(b)) + b.AddHandler("tell", tell.New(b)) // catches anything left, will always return true b.AddHandler("factoid", fact.New(b))