summaryrefslogtreecommitdiff
path: root/fig-monitor-irc/src/Fig/Monitor/IRC/Utils.hs
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2024-04-19 02:08:00 -0400
committerLLLL Colonq <llll@colonq>2024-04-19 02:08:00 -0400
commit432ff585d9fa0aafcf898a2e8e8be2d5b4524874 (patch)
tree0518eab5945ade61fefae3fc5843b3e7f5647834 /fig-monitor-irc/src/Fig/Monitor/IRC/Utils.hs
parent9d875ab8fb539246e3aea0aae58d2c9f227c8276 (diff)
Multi-bridge functionality
Diffstat (limited to 'fig-monitor-irc/src/Fig/Monitor/IRC/Utils.hs')
-rw-r--r--fig-monitor-irc/src/Fig/Monitor/IRC/Utils.hs2
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{..}