diff options
Diffstat (limited to 'app/TreeGrepper/Result.hs')
-rw-r--r-- | app/TreeGrepper/Result.hs | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/app/TreeGrepper/Result.hs b/app/TreeGrepper/Result.hs deleted file mode 100644 index 856871a..0000000 --- a/app/TreeGrepper/Result.hs +++ /dev/null @@ -1,15 +0,0 @@ -module TreeGrepper.Result (Result (..)) where - -import Data.Aeson (FromJSON) -import GHC.Generics (Generic) -import TreeGrepper.FileType (FileType) -import TreeGrepper.Match (Match) - -data Result = Result - { file :: String, - file_type :: FileType, - matches :: [Match] - } - deriving (Show, Generic) - -instance FromJSON Result |