X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dead%2Fhalcyon.git;a=blobdiff_plain;f=src%2FTwitter%2FUser.hs;h=071b0633695f22a1162835d7105cd20c05516e14;hp=988cf3c65b46f258991e5161f3344e8482263c22;hb=d7c6b5499c0969b6e488d9fc583f93bbb4e3d4c7;hpb=eed0d7b0f8ef28864c00925beef5c8853bcd44cc diff --git a/src/Twitter/User.hs b/src/Twitter/User.hs index 988cf3c..071b063 100644 --- a/src/Twitter/User.hs +++ b/src/Twitter/User.hs @@ -1,14 +1,13 @@ -- | Functions and data for working with Twitter users. module Twitter.User ( User(..), - screen_name_to_timeline_url - ) + screen_name_to_timeline_url ) where -import Control.Applicative ((<$>)) -import Data.Aeson ((.:), FromJSON(..), Value(Object)) -import Data.Text (pack) -import Data.Monoid (mempty) +import Control.Applicative ( (<$>) ) +import Data.Aeson ( (.:), FromJSON(..), Value(Object) ) +import Data.Text ( pack ) +import Data.Monoid ( mempty ) -- | Represents a Twitter user, and contains the only attribute -- thereof that we care about: the screen (user) name.