remove module unused since switch to optparse-applicative

This commit is contained in:
Joey Hess 2016-01-21 12:59:50 -04:00
parent d14770ca9c
commit a3bd4dde9f
Failed to extract signature
2 changed files with 0 additions and 19 deletions

View file

@ -15,7 +15,6 @@ module Types (
RemoteGitConfig(..),
Remote,
RemoteType,
Option
) where
import Annex
@ -24,7 +23,6 @@ import Types.GitConfig
import Types.Key
import Types.UUID
import Types.Remote
import Types.Option
type Backend = BackendA Annex
type Remote = RemoteA Annex

View file

@ -1,17 +0,0 @@
{- git-annex command options
-
- Copyright 2011 Joey Hess <id@joeyh.name>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Types.Option where
import System.Console.GetOpt
import Annex
{- Each dashed command-line option results in generation of an action
- in the Annex monad that performs the necessary setting.
-}
type Option = OptDescr (Annex ())