mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-16 19:22:22 +03:00
13 lines
311 B
Haskell
13 lines
311 B
Haskell
-- +http-client ----------------------------------------------------------------
|
|
|
|
module Vere.Http.Client where
|
|
|
|
import ClassyPrelude
|
|
import Vere.Http
|
|
|
|
-- | An http client effect is either requesting outbound, or canceling an old
|
|
-- outbound connection.
|
|
data Eff
|
|
= Request Word Request
|
|
| CancelRequest Word
|