From f83b424bf70b7b14b0268aeeafe1b3483fced49f Mon Sep 17 00:00:00 2001 From: Alexander Foremny Date: Thu, 21 Mar 2024 05:35:00 +0100 Subject: chore: Git -> Backend --- app/History.hs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'app/History.hs') diff --git a/app/History.hs b/app/History.hs index d423907..c808400 100644 --- a/app/History.hs +++ b/app/History.hs @@ -7,13 +7,13 @@ module History ) where +import Backend qualified import Comment qualified as G import Control.Exception (Handler (..), catches) import Data.List.NonEmpty qualified as NE import Data.Maybe (catMaybes) import Data.Proxy (Proxy (Proxy)) import Exception qualified as E -import Git qualified import History.IssueEvents (IssueEvents (..)) import History.Issues (Issues (..)) import History.Plan (formulate, realise) @@ -24,15 +24,15 @@ import Parallel (parMapM) getIssues :: IO Issues getIssues = realise . (formulate Proxy) . NE.fromList - =<< Git.getCommitHashes Nothing (Just Git.WorkingTree) + =<< Backend.getCommitHashes Nothing (Just Backend.WorkingTree) getIssueEvents :: IO IssueEvents getIssueEvents = realise . (formulate Proxy) . NE.fromList - =<< Git.getCommitHashes Nothing (Just Git.WorkingTree) + =<< Backend.getCommitHashes Nothing (Just Backend.WorkingTree) -- | Get all issues in the given directory and file. -getIssuesOfFile :: Git.CommitHash -> FilePath -> IO [I.Issue] +getIssuesOfFile :: Backend.CommitHash -> FilePath -> IO [I.Issue] getIssuesOfFile commitHash filename = ( fmap catMaybes . parMapM (fromComment commitHash) =<< G.getComments commitHash filename -- cgit v1.2.3