From baf36cb0cc9b253f70088a3700708826d1b830b9 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Sat, 25 May 2013 13:51:27 -0400 Subject: [PATCH] forgot to add --- Types/FileMatcher.hs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Types/FileMatcher.hs diff --git a/Types/FileMatcher.hs b/Types/FileMatcher.hs new file mode 100644 index 0000000000..fc442b6041 --- /dev/null +++ b/Types/FileMatcher.hs @@ -0,0 +1,13 @@ +{- git-annex file matcher types + - + - Copyright 2013 Joey Hess + - + - 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 + }