diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2017-01-25 07:12:39 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2017-01-25 07:12:39 +0300 |
commit | 44a7cce93547336293745f3c750b046680195ffe (patch) | |
tree | 6c959ec6aff111c34f0fec92fa008a97c7bf4b1d /src | |
parent | rename namespace 'Windows' to 'WindowsEnv' (diff) | |
download | windows-env-44a7cce93547336293745f3c750b046680195ffe.tar.gz windows-env-44a7cce93547336293745f3c750b046680195ffe.zip |
add a dummy module for re-exports
Diffstat (limited to '')
-rw-r--r-- | src/WindowsEnv.hs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/WindowsEnv.hs b/src/WindowsEnv.hs new file mode 100644 index 0000000..e306507 --- /dev/null +++ b/src/WindowsEnv.hs @@ -0,0 +1,16 @@ +-- | +-- Description : The convinience module to re-export public definitions +-- Copyright : (c) 2015 Egor Tensin <Egor.Tensin@gmail.com> +-- License : MIT +-- Maintainer : Egor.Tensin@gmail.com +-- Stability : experimental +-- Portability : Windows-only +-- +-- An empty module to re-export everything required by the packaged +-- applications. + +module WindowsEnv ( + module WindowsEnv.Environment + ) where + +import WindowsEnv.Environment |