Z-IO-0.1.8.0: Z/IO.hs
{-|
Module : Z.IO
Description : IO Umbrella module
Copyright : (c) Dong Han, 2017
License : BSD
Maintainer : winterland1989@gmail.com
Stability : experimental
Portability : non-portable
This re-exports several common modules to be used together with file, network, and other specific modules,
such as resource management, buffered IO and std streams.
-}
module Z.IO
( module Z.IO.BIO
, module Z.IO.Buffered
, module Z.IO.Environment
, module Z.IO.Exception
, module Z.IO.Logger
, module Z.IO.Resource
, module Z.IO.StdStream
) where
import Z.IO.BIO
import Z.IO.Buffered
import Z.IO.Environment
import Z.IO.Exception
import Z.IO.Logger
import Z.IO.Resource
import Z.IO.StdStream