module Issue.Provenance ( Provenance (..), ) where import Backend qualified import Data.Binary (Binary) import GHC.Generics (Generic) data Provenance = Provenance { first :: Backend.Commit, last :: Backend.Commit } deriving (Eq, Show, Generic, Binary)