add Central Imports

This commit is contained in:
Vincent Hanquez 2015-04-07 10:57:16 +01:00
parent 6216137f43
commit 6b70e270e1

View File

@ -0,0 +1,15 @@
-- |
-- Module : Crypto.Internal.Imports
-- License : BSD-style
-- Maintainer : Vincent Hanquez <vincent@snarc.org>
-- Stability : experimental
-- Portability : unknown
--
{-# LANGUAGE BangPatterns #-}
module Crypto.Internal.Imports
( module X
) where
import Data.Word as X
import Control.Applicative as X
import Control.Monad as X (forM, forM_, void)