This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module Http.HttpClient where | |
| import Control.Effect | |
| import Control.Effect.State | |
| import Control.Monad.IO.Class (MonadIO) | |
| import Data.Proxy (Proxy) | |
| import Http.HttpState (HttpState (..)) | |
| import qualified Network.HTTP.Req as R | |
| data HttpClient m a where |