diff options
author | Julien Dessaux | 2009-08-06 00:09:56 +0200 |
---|---|---|
committer | Julien Dessaux | 2009-08-06 00:09:56 +0200 |
commit | 45ebb68aa03ff7a292f46048141949c12cf90f91 (patch) | |
tree | fe336511aa80bcdddff64894bdb865359f6d7f18 /Config.hs | |
parent | Wrote a dynamic compilation stuff that works (unable to test reboot yet) (diff) | |
download | hsbot-45ebb68aa03ff7a292f46048141949c12cf90f91.tar.gz hsbot-45ebb68aa03ff7a292f46048141949c12cf90f91.tar.bz2 hsbot-45ebb68aa03ff7a292f46048141949c12cf90f91.zip |
renamed "Server" algebraic data type to "IrcServer"
Diffstat (limited to 'Config.hs')
-rw-r--r-- | Config.hs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -7,7 +7,7 @@ import Hsbot.Core -- | Imported plugins goes there -- | User server -kro = Server +kro = IrcServer { address = "kro.corp" , port = 6667 , channels = ["#geek"] @@ -21,6 +21,6 @@ kro = Server config :: Config config = Config { commandPrefixes = ['@'] - , servers = [kro] + , ircServers = [kro] } |