diff options
author | Alexander Foremny <aforemny@posteo.de> | 2024-03-13 06:01:18 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2024-03-14 07:07:45 +0100 |
commit | e06061a2d5717bee9b0b4fcaf72d3c79923e4016 (patch) | |
tree | c0b9fee95e9b87d5602f162b34c0550064959881 /app | |
parent | f63a777c07094af31c8841a3f50af8beca0aa369 (diff) |
chore: drop unused app/Extract.hs
Diffstat (limited to 'app')
-rw-r--r-- | app/Extract.hs | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/app/Extract.hs b/app/Extract.hs deleted file mode 100644 index e351898..0000000 --- a/app/Extract.hs +++ /dev/null @@ -1,17 +0,0 @@ -module Extract where - -data Comment = Comment - { -- result fields - file :: String, - file_type :: FileType, - -- match fields - kind :: String, - name :: String, - text :: T.Text, - start :: Position, - end :: Position - } - -extractComments :: T.Text -> IO [Comment] -extractComments = do - parer <- ts_parser_new |