This commit is contained in:
Joey Hess 2013-10-28 14:05:55 -04:00
parent 16045d15fe
commit 049e80e865
4 changed files with 22 additions and 5 deletions

19
Types/Limit.hs Normal file
View file

@ -0,0 +1,19 @@
{- types for limits
-
- Copyright 2013 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
{-# LANGUAGE CPP #-}
module Types.Limit where
import Common.Annex
import Types.FileMatcher
import qualified Data.Set as S
type MatchFiles = AssumeNotPresent -> FileInfo -> Annex Bool
type MkLimit = String -> Either String MatchFiles
type AssumeNotPresent = S.Set UUID