antelude-0.1.0: src/Antelude/File.hs
{- |
Module : Antelude.File
Description : Contains some basic functions for dealing with files.
Maintainer : dneavesdev@pm.me
-}
module Antelude.File
( FilePath
-- | Reexport from 'Prelude'
, P.appendFile
-- | Reexport from 'Prelude'
, P.readFile
-- | Reexport from 'Prelude'
, P.writeFile
) where
import safe Antelude.Internal.TypesClasses ( FilePath )
import safe qualified Prelude as P
( appendFile
, readFile
, writeFile
)