Archived
1
0
Fork 0

renamed "Server" algebraic data type to "IrcServer"

This commit is contained in:
Julien Dessaux 2009-08-06 00:09:56 +02:00
parent 1f6c64749d
commit 45ebb68aa0
3 changed files with 9 additions and 9 deletions

View file

@ -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]
}