A haskell IRC bot because who doesn't need one
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

9 行
248B

  1. module IRC.Plugins.Plugin ( PluginSet, Plugin(..) ) where
  2. import qualified Data.HashMap.Lazy as M
  3. type PluginSet = M.HashMap String Plugin
  4. data Plugin = Plugin { pluginEvent :: String, -- e.g. PRIVMSG
  5. pluginEntry :: Int }