module File.Text
  (
    
    withFile
  , openFileBlocking
    
  , readFile
    
  , writeFile
  , appendFile
    
    
  , getChar
  , getLine
  , getContents
  , hGetChar
  , hGetLine
  , hGetChunk
  , hGetContents
    
  , putStr
  , putStrLn
  , print
  , hPutStr
  , hPutStrLn
  , hPrint
    
  , TextEncoding
  , hSetEncoding
  , hGetEncoding
  , latin1
  , utf8
  , utf8_bom
  , utf16
  , utf16le
  , utf16be
  , utf32
  , utf32le
  , utf32be
  ) where
import Data.Text.IO
import GHC.IO.Handle.FD (openFileBlocking)
import System.IO        (TextEncoding, getChar, hGetChar, hGetEncoding, hPrint,
                         hSetEncoding, latin1, print, utf16, utf16be, utf16le,
                         utf32, utf32be, utf32le, utf8, utf8_bom)
import UnliftIO.IO      (withFile)