c20f31a1ad
And some reworking of types, and added an annex-availability git config setting.
11 lines
259 B
Haskell
11 lines
259 B
Haskell
{- git-annex remote availability
|
|
-
|
|
- Copyright 2014 Joey Hess <joey@kitenet.net>
|
|
-
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
-}
|
|
|
|
module Types.Availability where
|
|
|
|
data Availability = GloballyAvailable | LocallyAvailable
|
|
deriving (Eq, Show, Read)
|