Move Zip to Utils

This commit is contained in:
Gregor Kleen 2017-10-09 19:00:39 +02:00
parent 05d95fd1cb
commit 93b2c72a7b
2 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@
{-# OPTIONS_GHC -fno-warn-missing-fields #-} -- This concerns zipEntrySize in produceZip {-# OPTIONS_GHC -fno-warn-missing-fields #-} -- This concerns zipEntrySize in produceZip
{-# OPTIONS_GHC -fno-warn-orphans #-} {-# OPTIONS_GHC -fno-warn-orphans #-}
module Handler.Zip module Handler.Utils.Zip
( ZipError(..) ( ZipError(..)
, ZipInfo(..) , ZipInfo(..)
, produceZip , produceZip

View File

@ -2,11 +2,11 @@
{-# LANGUAGE RecordWildCards #-} {-# LANGUAGE RecordWildCards #-}
{-# OPTIONS_GHC -fno-warn-orphans #-} {-# OPTIONS_GHC -fno-warn-orphans #-}
module Handler.ZipSpec where module Handler.Utils.ZipSpec where
import TestImport import TestImport
import Handler.Zip import Handler.Utils.Zip
import System.FilePath import System.FilePath