Rename lots of modules

This commit is contained in:
2021-11-05 22:57:15 +01:00
parent 34910f853b
commit 7f542646dd
41 changed files with 130 additions and 113 deletions

View File

@@ -0,0 +1,16 @@
{-# LANGUAGE CPP #-}
module GHCup.System.Console (
#if IS_WINDOWS
module GHCup.System.Console.Windows
#else
module GHCup.System.Console.Posix
#endif
) where
#if IS_WINDOWS
import GHCup.System.Console.Windows
#else
import GHCup.System.Console.Posix
#endif