You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
253B

  1. {-# LANGUAGE DeriveGeneric #-}
  2. module IrcBot.Definitions.Options where
  3. import IrcBot.Definitions.ServerAddress
  4. import GHC.Generics
  5. data IOptions = IOptions
  6. {
  7. admins :: [String],
  8. servers :: [IServerAddress]
  9. } deriving (Show,Generic)