1
1
mirror of https://github.com/github/semantic.git synced 2024-11-22 23:29:37 +03:00

Rename SemanticCmdLine to Semantic.CLI.

This commit is contained in:
Rob Rix 2017-11-27 11:57:27 -05:00
parent bb21a24a93
commit 1e95b0270e
4 changed files with 5 additions and 6 deletions

View File

@ -1,3 +1,2 @@
module Main (main)
where
import SemanticCmdLine (main)
module Main (main) where
import Semantic.CLI (main)

View File

@ -74,12 +74,12 @@ library
, Renderer.Tag
, Renderer.TOC
, Semantic
, Semantic.CLI
, Semantic.Log
, Semantic.Stat
, Semantic.Task
, Semantic.Queue
, Semantic.Util
, SemanticCmdLine
, Syntax
build-depends: base >= 4.8 && < 5
, aeson

View File

@ -1,5 +1,5 @@
{-# LANGUAGE TemplateHaskell #-}
module SemanticCmdLine
module Semantic.CLI
( main
-- Testing
, runDiff

View File

@ -8,8 +8,8 @@ import Data.Functor.Both
import Data.Semigroup ((<>))
import Language
import Renderer
import Semantic.CLI
import Semantic.Task
import SemanticCmdLine
import System.IO (Handle)
import Test.Hspec hiding (shouldBe, shouldNotBe, shouldThrow, errorCall)
import Test.Hspec.Expectations.Pretty