packages feed

effectful-zoo-0.0.3.0: components/hedgehog/Effectful/Zoo/Hedgehog/Data/PackagePath.hs

module Effectful.Zoo.Hedgehog.Data.PackagePath
  ( PackagePath(..),
  ) where

import           GHC.Generics
import           HaskellWorks.Prelude

newtype PackagePath = PackagePath
  { filePath :: FilePath
  }
  deriving stock (Eq, Generic, Show)