packages feed

polysemy-db-0.0.1.0: lib/Polysemy/Db/Data/DbHost.hs

module Polysemy.Db.Data.DbHost where

newtype DbHost =
  DbHost { unDbHost :: Text }
  deriving stock (Eq, Show, Generic)
  deriving newtype (IsString, Ord)

instance Default DbHost where
  def = "localhost"

json ''DbHost