Skip to content

Commit e808ec7

Browse files
committed
s/Option.CommandLine/CommandLineOption/
1 parent e17ff7e commit e808ec7

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed

hi.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

src/Cli.hs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ module Cli
44
) where
55

66
import qualified Hi
7+
import Hi.CommandLineOption (CommandLineOption,
8+
commandLineOption)
79
import Hi.Option (buildOption, defaultRepo)
810
import qualified Hi.Version as Version
911

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module Hi.Option.Commandline
1+
module Hi.CommandLineOption
22
( CommandLineOption(..)
33
, commandLineOption
44
) where

src/Hi/Option.hs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff 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
1313
import Hi.Types
1414

1515
import 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

2121
buildOption :: CommandLineOption -> IO Option
2222
buildOption copt = do

0 commit comments

Comments
 (0)