module Horizon.Spec.Types.Url (Url(MkUrl), fromUrl) where import Data.Kind (Type) import Data.String (IsString) import Data.Text (Text) import Dhall (FromDhall, ToDhall) type Url :: Type newtype Url = MkUrl { fromUrl :: Text } deriving stock (Eq, Show) deriving newtype (FromDhall, ToDhall, IsString)