diff options
Diffstat (limited to 'fig-monitor-irc/src/Fig/Monitor/IRC')
| -rw-r--r-- | fig-monitor-irc/src/Fig/Monitor/IRC/Utils.hs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fig-monitor-irc/src/Fig/Monitor/IRC/Utils.hs b/fig-monitor-irc/src/Fig/Monitor/IRC/Utils.hs index 2cf46b1..b117662 100644 --- a/fig-monitor-irc/src/Fig/Monitor/IRC/Utils.hs +++ b/fig-monitor-irc/src/Fig/Monitor/IRC/Utils.hs @@ -18,7 +18,6 @@ data Config = Config { host :: Text , port :: Int , nick :: Text - , sendchannel :: Text , channels :: [Text] } deriving (Show, Eq, Ord) @@ -27,7 +26,6 @@ configCodec = do host <- Toml.text "host" Toml..= (\a -> a.host) port <- Toml.int "port" Toml..= (\a -> a.port) nick <- Toml.text "nick" Toml..= (\a -> a.nick) - sendchannel <- Toml.text "sendchannel" Toml..= (\a -> a.sendchannel) channels <- Toml.arrayOf Toml._Text "channels" Toml..= (\a -> a.channels) pure $ Config{..} |
