Search
Helper functions for interacting with Req.
@type response() :: {:ok, map()} | {:error, list() | :timeout | any()}
@spec delete(url :: Req.url()) :: response()
@spec get(url :: Req.url(), params :: map()) :: response()
@spec patch(url :: Req.url(), body :: map()) :: response()
@spec post(url :: Req.url(), body :: map()) :: response()
@spec put(url :: Req.url(), params :: map()) :: response()