Skip to content

Commit

Permalink
Move ReadDir.hsc to Posix directory
Browse files Browse the repository at this point in the history
  • Loading branch information
harendra-kumar committed Jul 8, 2024
1 parent 6c2b40a commit 4dbf93a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion core/src/Streamly/Internal/FileSystem/Dir.hs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ import Streamly.Internal.FileSystem.Path (Path)
#if defined(mingw32_HOST_OS) || defined(__MINGW32__)
import qualified System.Win32 as Win32
#else
import Streamly.Internal.FileSystem.ReadDir
import Streamly.Internal.FileSystem.Posix.ReadDir
( DirStream, openDirStream, closeDirStream, readDirStreamEither
, readEitherChunks, readEitherByteChunks)
#endif
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
-- |
-- Module : Streamly.Internal.FileSystem.Dir
-- Module : Streamly.Internal.FileSystem.Posix.ReadDir
-- Copyright : (c) 2018 Composewell Technologies
--
-- License : BSD3
-- Maintainer : [email protected]
-- Portability : GHC

module Streamly.Internal.FileSystem.ReadDir
module Streamly.Internal.FileSystem.Posix.ReadDir
(
#if !defined(mingw32_HOST_OS) && !defined(__MINGW32__)
DirStream
Expand Down
2 changes: 1 addition & 1 deletion core/streamly-core.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ library
, Streamly.Internal.FileSystem.Handle
, Streamly.Internal.FileSystem.File
, Streamly.Internal.FileSystem.Dir
, Streamly.Internal.FileSystem.ReadDir
, Streamly.Internal.FileSystem.Posix.ReadDir

-- Ring Arrays
, Streamly.Internal.Data.Ring
Expand Down

0 comments on commit 4dbf93a

Please sign in to comment.