diff options
Diffstat (limited to 'Types')
-rw-r--r-- | Types/FileMatcher.hs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Types/FileMatcher.hs b/Types/FileMatcher.hs new file mode 100644 index 000000000..fc442b604 --- /dev/null +++ b/Types/FileMatcher.hs @@ -0,0 +1,13 @@ +{- git-annex file matcher types + - + - Copyright 2013 Joey Hess <joey@kitenet.net> + - + - Licensed under the GNU GPL version 3 or higher. + -} + +module Types.FileMatcher where + +data FileInfo = FileInfo + { relFile :: FilePath -- may be relative to cwd + , matchFile :: FilePath -- filepath to match on; may be relative to top + } |