]> gitweb.michael.orlitzky.com - dead/halcyon.git/blobdiff - src/Configuration.hs
Add the Twitter API oAuth stuff to the configuration and command line.
[dead/halcyon.git] / src / Configuration.hs
index 248c91faeb460f99adaf69f566b5a527d1fff2ba..5e84368b6853a4d85c1a293f0fd44b484ff4f4a3 100644 (file)
@@ -6,9 +6,14 @@ module Configuration (
 )
 where
 
-data Cfg = Cfg { heartbeat :: Int,
+data Cfg = Cfg { consumer_key :: String,
+                 consumer_secret :: String,
+                 access_token :: String,
+                 access_secret :: String,
+                 heartbeat :: Int,
                  ignore_replies :: Bool,
                  ignore_retweets :: Bool,
+                 sendmail_path :: String,
                  from_address :: Maybe String,
                  to_address :: Maybe String,
                  verbose :: Bool }