packages feed

helic-0.6.0.0: lib/Helic/Data/Host.hs

{-# options_haddock prune #-}

-- |Host Data Type, Internal
module Helic.Data.Host where

newtype Host =
  Host { unHost :: Text }
  deriving stock (Eq, Show)
  deriving newtype (IsString)

json ''Host