A haskell IRC bot because who doesn't need one
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

9 lignes
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 }