diff options
author | Joris | 2015-08-31 22:13:39 +0200 |
---|---|---|
committer | Joris | 2015-08-31 22:13:39 +0200 |
commit | 1783b28d8630119f96b49d8ab8efa62975cfd13f (patch) | |
tree | a1a8fd5f5e05aee02ca4b729ab06f43cc3bdd9b0 | |
parent | bf84db4f5c9c5e074a212f808eddfbdd96b531f6 (diff) |
Adding <$> import elswhere
-rw-r--r-- | src/CommandLineOptions.hs | 2 | ||||
-rw-r--r-- | src/HTTP.hs | 1 | ||||
-rw-r--r-- | src/Main.hs | 2 |
3 files changed, 5 insertions, 0 deletions
diff --git a/src/CommandLineOptions.hs b/src/CommandLineOptions.hs index 2a1f585..9f1a3c0 100644 --- a/src/CommandLineOptions.hs +++ b/src/CommandLineOptions.hs @@ -3,6 +3,8 @@ module CommandLineOptions , getOptions ) where +import Control.Applicative ((<$>), (<*>)) + import Options.Applicative data Sample = Sample diff --git a/src/HTTP.hs b/src/HTTP.hs index 6ba153d..8d8d34a 100644 --- a/src/HTTP.hs +++ b/src/HTTP.hs @@ -4,6 +4,7 @@ module HTTP import Control.Exception (SomeException, try) import Control.Arrow (left) +import Control.Applicative ((<$>)) import Data.Text (Text) import qualified Data.Text as T diff --git a/src/Main.hs b/src/Main.hs index f4fb50a..94a075f 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -6,6 +6,8 @@ module Main import HTTP +import Control.Applicative ((<$>)) + import System.Environment (getArgs, getProgName) import System.Directory (createDirectoryIfMissing) |