git-annex/Types/Availability.hs
2015-01-21 12:50:09 -04:00

11 lines
256 B
Haskell

{- git-annex remote availability
-
- Copyright 2014 Joey Hess <id@joeyh.name>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Types.Availability where
data Availability = GloballyAvailable | LocallyAvailable
deriving (Eq, Show, Read)