smith-client-0.0.1: src/Smith/Client/Data/Certificate.hs
-- |
-- Smith certificate data types.
--
module Smith.Client.Data.Certificate (
Certificate (..)
) where
import Data.Text (Text)
newtype Certificate =
Certificate {
getCertificate :: Text
} deriving (Eq, Ord, Show)