purescript-fetch/src/HTTP/URL.purs
2023-11-18 16:25:25 -06:00

13 lines
228 B
Haskell

module HTTP.URL where
import Prelude
import Data.Newtype (class Newtype)
newtype URL = URL String
derive instance Newtype URL _
derive newtype instance Show URL
derive newtype instance Eq URL
derive newtype instance Ord URL