diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-07-18 00:17:44 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-07-18 00:17:44 +0300 |
commit | 427ae9ad54492954578cafbfcd2d815a084e0986 (patch) | |
tree | e81cdbf3b9f4d06c921f81a08264b214381d3c8a /src | |
parent | refactoring (diff) | |
download | windows-env-427ae9ad54492954578cafbfcd2d815a084e0986.tar.gz windows-env-427ae9ad54492954578cafbfcd2d815a084e0986.zip |
put modules to 'Windows'
Diffstat (limited to 'src')
-rw-r--r-- | src/Windows/Environment.hs (renamed from src/Environment.hs) | 6 | ||||
-rw-r--r-- | src/Windows/Registry.hs (renamed from src/Registry.hs) | 2 | ||||
-rw-r--r-- | src/Windows/Utils.hs (renamed from src/WindowsUtils.hs) | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/Environment.hs b/src/Windows/Environment.hs index f370de4..2bea481 100644 --- a/src/Environment.hs +++ b/src/Windows/Environment.hs @@ -4,7 +4,7 @@ - See LICENSE.txt for details. -} -module Environment +module Windows.Environment ( Profile(..) , profileKeyPath @@ -22,8 +22,8 @@ import Data.List (intercalate) import Data.List.Split (splitOn) import System.IO.Error (catchIOError, isDoesNotExistError) -import qualified Registry -import WindowsUtils (notifyEnvironmentUpdate) +import qualified Windows.Registry as Registry +import Windows.Utils (notifyEnvironmentUpdate) data Profile = CurrentUser | AllUsers diff --git a/src/Registry.hs b/src/Windows/Registry.hs index 48d69f0..528027f 100644 --- a/src/Registry.hs +++ b/src/Windows/Registry.hs @@ -4,7 +4,7 @@ - See LICENSE.txt for details. -} -module Registry +module Windows.Registry ( KeyPath , keyPathFromString , keyPathJoin diff --git a/src/WindowsUtils.hs b/src/Windows/Utils.hs index 6fa1f0e..aad241f 100644 --- a/src/WindowsUtils.hs +++ b/src/Windows/Utils.hs @@ -4,7 +4,7 @@ - See LICENSE.txt for details. -} -module WindowsUtils +module Windows.Utils ( notifyEnvironmentUpdate ) where |