File tree Expand file tree Collapse file tree 4 files changed +11
-9
lines changed
Expand file tree Collapse file tree 4 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ library
5656 Hi.FilePath
5757 Hi.Git
5858 Hi.Option
59- Hi.Option.Commandline
59+ Hi.CommandLineOption
6060 Hi.Template
6161 Hi.Types
6262 Hi.Version
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ module Cli
44 ) where
55
66import qualified Hi
7+ import Hi.CommandLineOption (CommandLineOption ,
8+ commandLineOption )
79import Hi.Option (buildOption , defaultRepo )
810import qualified Hi.Version as Version
911
Original file line number Diff line number Diff line change 1- module Hi.Option.Commandline
1+ module Hi.CommandLineOption
22 ( CommandLineOption (.. )
33 , commandLineOption
44 ) where
Original file line number Diff line number Diff line change @@ -7,16 +7,16 @@ module Hi.Option
77 , buildOption
88 ) where
99
10- import qualified Hi.Git as Git
11- import Hi.Option.Commandline ( CommandLineOption )
12- import qualified Hi.Option.Commandline as CommandLineOption
10+ import Hi.CommandLineOption ( CommandLineOption )
11+ import qualified Hi.CommandLineOption as CommandLineOption
12+ import qualified Hi.Git as Git
1313import Hi.Types
1414
1515import Control.Applicative
16- import Data.Char (isUpper , toLower )
17- import Data.Maybe (fromMaybe )
18- import Data.Time.Calendar (toGregorian )
19- import Data.Time.Clock (getCurrentTime , utctDay )
16+ import Data.Char (isUpper , toLower )
17+ import Data.Maybe (fromMaybe )
18+ import Data.Time.Calendar (toGregorian )
19+ import Data.Time.Clock (getCurrentTime , utctDay )
2020
2121buildOption :: CommandLineOption -> IO Option
2222buildOption copt = do
You can’t perform that action at this time.
0 commit comments