diff options
Diffstat (limited to '')
-rw-r--r-- | Hsbot/Core.hs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Hsbot/Core.hs b/Hsbot/Core.hs index b2e34c8..4daeef9 100644 --- a/Hsbot/Core.hs +++ b/Hsbot/Core.hs @@ -3,10 +3,12 @@ module Hsbot.Core , Config(..) , IrcServer(..) , newbot + , sendstr ) where import qualified Data.Map as M import System.IO (Handle) +import Text.Printf (hPrintf) -- | An IRC Bot server state (socket handles) data Bot = Bot @@ -34,3 +36,6 @@ data IrcServer = IrcServer newbot :: Bot newbot = Bot (M.empty) +-- | Send a string over handle +sendstr handle str = hPrintf handle "%s\r\n" str + |