packages feed

hw-xml-0.4.0.0: app/App/XPath/Types.hs

{-# LANGUAGE DeriveGeneric #-}

module App.XPath.Types where

import Data.Text    (Text)
import GHC.Generics

newtype XPath = XPath
  { path :: [Text]
  } deriving (Eq, Show, Generic)