effectful-zoo-0.0.3.0: components/hedgehog/Effectful/Zoo/Hedgehog/Data/Workspace.hs
module Effectful.Zoo.Hedgehog.Data.Workspace
( Workspace(..),
) where
import GHC.Generics
import HaskellWorks.Prelude
newtype Workspace = Workspace
{ filePath :: FilePath
}
deriving stock (Eq, Generic, Show)