summaryrefslogtreecommitdiff
path: root/Config.hs
diff options
context:
space:
mode:
authorJulien Dessaux2009-08-06 00:09:56 +0200
committerJulien Dessaux2009-08-06 00:09:56 +0200
commit45ebb68aa03ff7a292f46048141949c12cf90f91 (patch)
treefe336511aa80bcdddff64894bdb865359f6d7f18 /Config.hs
parentWrote a dynamic compilation stuff that works (unable to test reboot yet) (diff)
downloadhsbot-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.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Config.hs b/Config.hs
index 44278f6..a635292 100644
--- a/Config.hs
+++ b/Config.hs
@@ -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]
}