packages feed

proteome-0.9.9.9: lib/Proteome/Data/Replace.hs

module Proteome.Data.Replace where

import Prelude hiding (lines)
import Ribosome (ScratchState)

import Proteome.Data.GrepOutputLine (GrepOutputLine)

data Replace =
  Replace {
    scratch :: ScratchState,
    lines :: NonEmpty GrepOutputLine
  }
  deriving stock (Eq, Show, Generic)