blob: f14333111cd8db133b3b1d64bf6b79d929a7e51c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{- git-annex url claiming
-
- Copyright 2014 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Types.URLClaim where
data URLClaim = URLClaimed | URLClaimedAs FilePath
deriving (Eq)
|