summaryrefslogtreecommitdiff
path: root/Config.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Config.hs')
-rw-r--r--Config.hs32
1 files changed, 0 insertions, 32 deletions
diff --git a/Config.hs b/Config.hs
deleted file mode 100644
index fbf98b1..0000000
--- a/Config.hs
+++ /dev/null
@@ -1,32 +0,0 @@
-module Config
- ( config
- , defaultPlugins
- ) where
-
-import Network
-
-import Hsbot.Types
-
--- | Imported plugins goes there
-defaultPlugins :: [String]
-defaultPlugins = []
-
--- | User server
-localhost :: IrcServer
-localhost = IrcServer
- { serverAddress = "localhost"
- , serverPort = PortNumber 6667
- , joinChannels = ["#shbot", "#geek"]
- , nickname = "hsbot"
- , password = ""
- , realname = "The One True bot, with it's haskell soul."
- , administrators = ["julien"]
- }
-
--- | User configuration
-config :: Config
-config = Config
- { commandPrefix = '@'
- , ircServer = localhost
- }
-