diff options
Diffstat (limited to 'src/Target.hs')
-rw-r--r-- | src/Target.hs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/Target.hs b/src/Target.hs index ea46161..492d356 100644 --- a/src/Target.hs +++ b/src/Target.hs @@ -4,14 +4,17 @@ module Target ( toTarget ) where -import Binary import Control.Exception import qualified Data.BitString as Bit import qualified Data.ByteString.Lazy.Char8 as Byte -import Helper import System.IO import System.Process +import Binary +import Config +import Error +import Helper + tryIO :: IO a -> IO (Either IOException a) tryIO = try |