diff options
author | Alexander Foremny <aforemny@posteo.de> | 2024-03-21 05:35:00 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2024-03-25 07:45:59 +0100 |
commit | f83b424bf70b7b14b0268aeeafe1b3483fced49f (patch) | |
tree | 348a60e815f4bee492f58dea903ebc380029d61f /app/Issue/Provenance.hs | |
parent | fc0afaaa273f5b5d3696df87d70d5347a13bb9ac (diff) |
chore: Git -> Backend
Diffstat (limited to 'app/Issue/Provenance.hs')
-rw-r--r-- | app/Issue/Provenance.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Issue/Provenance.hs b/app/Issue/Provenance.hs index 321f6a2..90c96ea 100644 --- a/app/Issue/Provenance.hs +++ b/app/Issue/Provenance.hs @@ -3,12 +3,12 @@ module Issue.Provenance ) where +import Backend qualified import Data.Binary (Binary) import GHC.Generics (Generic) -import Git qualified data Provenance = Provenance - { first :: Git.Commit, - last :: Git.Commit + { first :: Backend.Commit, + last :: Backend.Commit } deriving (Eq, Show, Generic, Binary) |